コード例 #1
0
 static public Interactable IDtoInteractable(InteractableID id)
 {
     return(Instance.interactableLUT[id.siteID, id.spotID]);
 }
コード例 #2
0
    // Overload function for the above function. Accepts Interactable ID instead of Interactable
    public static string stringifyInteractable(InteractableID item)
    {
        string data = "Site: " + item.siteID + " Index: " + item.spotID + " Action: " + item.actionID;

        return(data);
    }