Example #1
0
 public static bool LabelHasContent(GUIContent label)
 {
     return(EditorGUIHelper.LabelHasContent(label));
 }
Example #2
0
 public static bool HasVisibleChildFields(SerializedProperty property)
 {
     return(EditorGUIHelper.HasVisibleChildFields(property));
 }
Example #3
0
 public static GameObject GetGameObjectFromObject(Object obj)
 {
     return(EditorGUIHelper.GetGameObjectFromObject(obj));
 }
Example #4
0
 public static void EndEditingActiveTextField()
 {
     EditorGUIHelper.EndEditingActiveTextField();
 }
Example #5
0
 public static int ArraySizeField(Rect position, GUIContent label, int value, GUIStyle style)
 {
     return(EditorGUIHelper.GetArraySizeField(position, label, value, style));
 }
Example #6
0
 public static bool CheckForCrossSceneReferencing(Object obj1, Object obj2)
 {
     return(EditorGUIHelper.CheckForCrossSceneReferencing(obj1, obj2));
 }
Example #7
0
 public static float GetSinglePropertyHeight(SerializedProperty property, GUIContent label)
 {
     return(EditorGUIHelper.GetSinglePropertyHeight(property, label));
 }
Example #8
0
 public static bool DefaultPropertyField(Rect position, SerializedProperty property, GUIContent label)
 {
     return(EditorGUIHelper.DefaultPropertyField(position, property, label));
 }
Example #9
0
 public static Gradient GradientField(GUIContent label, Rect position, Gradient gradient)
 {
     return(EditorGUIHelper.GradientField(label, position, gradient));
 }