UnityEditor.ModuleUI.GUIIntDraggable C# (CSharp) 메소드

GUIIntDraggable() 공개 정적인 메소드

public static GUIIntDraggable ( GUIContent label, UnityEditor.SerializedProperty intProp ) : int
label UnityEngine.GUIContent
intProp UnityEditor.SerializedProperty
리턴 int
        public static int GUIIntDraggable(GUIContent label, SerializedProperty intProp, params GUILayoutOption[] layoutOptions)
        {
            return GUIIntDraggable(label, intProp.intValue, layoutOptions);
        }

Same methods

ModuleUI::GUIIntDraggable ( GUIContent label, int intValue ) : int

Usage Example

예제 #1
0
 public static int GUIIntDraggable(GUIContent label, SerializedProperty intProp)
 {
     return(ModuleUI.GUIIntDraggable(label, intProp.intValue));
 }
All Usage Examples Of UnityEditor.ModuleUI::GUIIntDraggable