예제 #1
0
        public static void ObjectLabelField(Rect position, string assetPath)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(position, assetPath, style);
        }
예제 #2
0
        public static void ObjectLabelField(Rect position, string guid, int fileID)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(position, guid, fileID, style);
        }
예제 #3
0
        public static void ObjectLabelField(Rect position, int instanceID)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(position, instanceID, style);
        }
예제 #4
0
        public static void ObjectLabelField(string assetPath, params GUILayoutOption[] options)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(assetPath, style);
        }
예제 #5
0
        public static void ObjectLabelField(SerializedProperty property, params GUILayoutOption[] options)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(property, style);
        }
예제 #6
0
        public static void ObjectLabelField(int instanceID, params GUILayoutOption[] options)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(instanceID, style);
        }
예제 #7
0
        public static void ObjectLabelField(string guid, int fileID, params GUILayoutOption[] options)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(guid, fileID, style);
        }
예제 #8
0
        public static void ObjectLabelField(Object value, params GUILayoutOption[] options)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(value, style);
        }
예제 #9
0
        public static void ObjectLabelField(Rect position, Object value)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(position, value, style);
        }
예제 #10
0
        public static void ObjectLabelField(Rect position, SerializedProperty property)
        {
            var style = CustomGUIDetail.ObjectLabelFieldDefaultGUIStyle();

            ObjectLabelField(position, property, style);
        }