public static bool IsClickedGameObjectTag(string gameObjectTag) { GameObject selected; ClickSelect(out selected); return(TypeComparisons.IsGameObjectTag(selected, gameObjectTag)); }
public static bool IsClickedDifferentGameObjectTo(GameObject gameObj) { GameObject selected; ClickSelect(out selected); return(TypeComparisons.AreDifferentGameObjects(selected, gameObj)); }