Esempio n. 1
0
        public static InspectorGroupHandler Create()
        {
            var instance = new InspectorGroupHandler();

            instance.IsHidden = false;
            return(instance);
        }
Esempio n. 2
0
        /// <summary>
        /// Draw supported member GUI for given targets. This method supports
        /// non-UnityEngine.Object instances, such as pure Serializable classes,
        /// that are part of <paramref name="targets"/>. <paramref name="getChildCallback"/>
        /// is called to access these serializable objects. If <paramref name="getChildCallback"/>
        /// is null, targets will be rendered.
        /// </summary>
        /// <param name="targets">Target UnityEngine.Object instances (used for Undo and SetDirty).</param>
        /// <param name="getChildCallback">Null and targets will be rendered, otherwise the returned
        ///                                instance from this callback.</param>
        public static void DrawMembersGUI(Object[] targets,
                                          Func <Object, object> getChildCallback = null,
                                          SerializedObject fallback = null)
        {
            targets = targets.Where(obj => obj != null).ToArray();

            if (targets.Length == 0)
            {
                return;
            }

            var objects = targets.Select(target => getChildCallback == null ?
                                         target :
                                         getChildCallback(target))
                          .Where(obj => obj != null).ToArray();

            if (objects.Length == 0)
            {
                return;
            }

            Undo.RecordObjects(targets, "Inspector");

            var hasChanges = false;

            InvokeWrapper[] fieldsAndProperties = InvokeWrapper.FindFieldsAndProperties(objects[0].GetType());
            var             group = InspectorGroupHandler.Create();

            foreach (var wrapper in fieldsAndProperties)
            {
                if (!ShouldBeShownInInspector(wrapper.Member))
                {
                    continue;
                }

                group.Update(wrapper, objects[0]);

                if (group.IsHidden)
                {
                    continue;
                }

                var runtimeDisabled = EditorApplication.isPlayingOrWillChangePlaymode &&
                                      wrapper.Member.IsDefined(typeof(DisableInRuntimeInspectorAttribute), true);
                using (new GUI.EnabledBlock(UnityEngine.GUI.enabled && !runtimeDisabled))
                    hasChanges = HandleType(wrapper, objects, fallback) || hasChanges;
            }
            group.Dispose();

            if (hasChanges)
            {
                foreach (var obj in targets)
                {
                    EditorUtility.SetDirty(obj);
                }
            }
        }
Esempio n. 3
0
        /// <summary>
        /// Draw supported member GUI for given targets. This method supports
        /// non-UnityEngine.Object instances, such as pure Serializable classes,
        /// that are part of <paramref name="targets"/>. <paramref name="getChildCallback"/>
        /// is called to access these serializable objects. If <paramref name="getChildCallback"/>
        /// is null, targets will be rendered.
        /// </summary>
        /// <param name="targets">Target UnityEngine.Object instances (used for Undo and SetDirty).</param>
        /// <param name="getChildCallback">Null and targets will be rendered, otherwise the returned
        ///                                instance from this callback.</param>
        public static void DrawMembersGUI(Object[] targets,
                                          Func <Object, object> getChildCallback = null,
                                          SerializedObject fallback = null)
        {
            targets = targets.Where(obj => obj != null).ToArray();

            if (targets.Length == 0)
            {
                return;
            }

            var objects = targets.Select(target => getChildCallback == null ?
                                         target :
                                         getChildCallback(target))
                          .Where(obj => obj != null).ToArray();

            if (objects.Length == 0)
            {
                return;
            }

            Undo.RecordObjects(targets, "Inspector");

            var hasChanges = false;

            InvokeWrapper[] fieldsAndProperties = InvokeWrapper.FindFieldsAndProperties(objects[0].GetType());
            var             group = InspectorGroupHandler.Create();

            foreach (var wrapper in fieldsAndProperties)
            {
                if (!ShouldBeShownInInspector(wrapper.Member))
                {
                    continue;
                }

                group.Update(wrapper, objects[0]);

                if (group.IsHidden)
                {
                    continue;
                }

                hasChanges = HandleType(wrapper, objects, fallback) || hasChanges;
            }
            group.Dispose();

            if (hasChanges)
            {
                foreach (var obj in targets)
                {
                    EditorUtility.SetDirty(obj);
                }
            }
        }