示例#1
0
        public void MirrorBoneWeight()
        {
            if (voxelBone.mirrorBone == null)
            {
                return;
            }
            if (!voxelBone.edit_mirrorSetBoneWeight)
            {
                return;
            }

            voxelBone.mirrorBone.transform.localPosition = new Vector3(-voxelBone.transform.localPosition.x, voxelBone.transform.localPosition.y, voxelBone.transform.localPosition.z);

            #region Weight
            {
                voxelBone.mirrorBone.weightData.ClearWeight();
                voxelBone.weightData.AllAction((pos, weights) =>
                {
                    var newPos              = GetMirrorVoxelPosition(pos);
                    var newWeights          = new WeightData.VoxelWeight();
                    newWeights.weightXYZ    = weights.weight_XYZ;
                    newWeights.weight_XYZ   = weights.weightXYZ;
                    newWeights.weightX_YZ   = weights.weight_X_YZ;
                    newWeights.weightXY_Z   = weights.weight_XY_Z;
                    newWeights.weight_X_YZ  = weights.weightX_YZ;
                    newWeights.weight_XY_Z  = weights.weightXY_Z;
                    newWeights.weightX_Y_Z  = weights.weight_X_Y_Z;
                    newWeights.weight_X_Y_Z = weights.weightX_Y_Z;
                    voxelBone.mirrorBone.weightData.SetWeight(newPos, newWeights);
                });
            }
            #endregion
        }
        protected override void InspectorGUI()
        {
            if (animationTarget == null)
            {
                return;
            }

            base.InspectorGUI();

            Action <UnityEngine.Object, string> TypeTitle = (o, title) =>
            {
                if (o == null)
                {
                    EditorGUILayout.LabelField(title, guiStyleMagentaBold);
                }
                else
                {
                    EditorGUILayout.LabelField(title, EditorStyles.boldLabel);
                }
            };

            #region Animation
            if (!string.IsNullOrEmpty(baseTarget.voxelFilePath))
            {
                animationTarget.edit_animationFoldout = EditorGUILayout.Foldout(animationTarget.edit_animationFoldout, "Animation", guiStyleFoldoutBold);
                if (animationTarget.edit_animationFoldout)
                {
                    EditorGUILayout.BeginVertical(GUI.skin.box);
                    {
                        EditorGUILayout.BeginHorizontal();
                        TypeTitle(animationTarget.rootBone, "Bone");
                        {
                            EditorGUI.BeginDisabledGroup(animationTarget.rootBone == null);
                            if (GUILayout.Button("Save as template", GUILayout.Width(128)))
                            {
                                #region Save as template
                                string BoneTemplatesPath = Application.dataPath + "/VoxelImporter/Scripts/Editor/BoneTemplates";
                                string path = EditorUtility.SaveFilePanel("Save as template", BoneTemplatesPath, string.Format("{0}.asset", baseTarget.gameObject.name), "asset");
                                if (!string.IsNullOrEmpty(path))
                                {
                                    if (path.IndexOf(Application.dataPath) < 0)
                                    {
                                        SaveInsideAssetsFolderDisplayDialog();
                                    }
                                    else
                                    {
                                        path = path.Replace(Application.dataPath, "Assets");
                                        var boneTemplate = ScriptableObject.CreateInstance <BoneTemplate>();
                                        boneTemplate.Set(animationTarget.rootBone);
                                        AssetDatabase.CreateAsset(boneTemplate, path);
                                    }
                                }
                                #endregion
                            }
                            EditorGUI.EndDisabledGroup();
                            if (GUILayout.Button("Create", guiStyleDropDown, GUILayout.Width(64)))
                            {
                                #region Create
                                VoxelHumanoidConfigreAvatar.Destroy();

                                Dictionary <string, BoneTemplate> boneTemplates = new Dictionary <string, BoneTemplate>();
                                {
                                    {
                                        var boneTemplate = ScriptableObject.CreateInstance <BoneTemplate>();
                                        boneTemplate.boneInitializeData.Add(new BoneTemplate.BoneInitializeData()
                                        {
                                            name = "Root"
                                        });
                                        boneTemplate.boneInitializeData.Add(new BoneTemplate.BoneInitializeData()
                                        {
                                            name = "Bone", parentName = "Root", position = new Vector3(0f, 2f, 0f)
                                        });
                                        boneTemplates.Add("Default", boneTemplate);
                                    }
                                    {
                                        var guids = AssetDatabase.FindAssets("t:bonetemplate");
                                        for (int i = 0; i < guids.Length; i++)
                                        {
                                            var path         = AssetDatabase.GUIDToAssetPath(guids[i]);
                                            var boneTemplate = AssetDatabase.LoadAssetAtPath <BoneTemplate>(path);
                                            if (boneTemplate == null)
                                            {
                                                continue;
                                            }
                                            var name = path.Remove(0, "Assets/".Length);
                                            boneTemplates.Add(name, boneTemplate);
                                        }
                                    }
                                }

                                Action <BoneTemplate> MenuCallback = (boneTemplate) =>
                                {
                                    GameObject goRoot = baseTarget.gameObject;
                                    VoxelBase  clRoot = baseTarget;

                                    if (prefabType == PrefabType.Prefab)
                                    {
                                        goRoot = (GameObject)PrefabUtility.InstantiatePrefab(baseTarget.gameObject);
                                        clRoot = goRoot.GetComponent <VoxelBase>();
                                    }

                                    {
                                        var bones = clRoot.GetComponentsInChildren <VoxelSkinnedAnimationObjectBone>();
                                        for (int i = 0; i < bones.Length; i++)
                                        {
                                            for (int j = 0; j < bones[i].transform.childCount; j++)
                                            {
                                                var child = bones[i].transform.GetChild(j);
                                                if (child.GetComponent <VoxelSkinnedAnimationObjectBone>() == null)
                                                {
                                                    Undo.SetTransformParent(child, animationTarget.transform, "Create Bone");
                                                    i--;
                                                }
                                            }
                                        }
                                        for (int i = 0; i < bones.Length; i++)
                                        {
                                            if (bones[i] == null || bones[i].gameObject == null)
                                            {
                                                continue;
                                            }
                                            Undo.DestroyObjectImmediate(bones[i].gameObject);
                                        }
                                    }

                                    {
                                        List <GameObject> createList = new List <GameObject>();
                                        for (int i = 0; i < boneTemplate.boneInitializeData.Count; i++)
                                        {
                                            var        tp = boneTemplate.boneInitializeData[i];
                                            GameObject go = new GameObject(tp.name);
                                            Undo.RegisterCreatedObjectUndo(go, "Create Bone");
                                            var bone = Undo.AddComponent <VoxelSkinnedAnimationObjectBone>(go);
                                            {
                                                bone.edit_disablePositionAnimation = tp.disablePositionAnimation;
                                                bone.edit_disableRotationAnimation = tp.disableRotationAnimation;
                                                bone.edit_disableScaleAnimation    = tp.disableScaleAnimation;
                                                bone.edit_mirrorSetBoneAnimation   = tp.mirrorSetBoneAnimation;
                                                bone.edit_mirrorSetBonePosition    = tp.mirrorSetBonePosition;
                                                bone.edit_mirrorSetBoneWeight      = tp.mirrorSetBoneWeight;
                                            }
                                            if (string.IsNullOrEmpty(tp.parentName))
                                            {
                                                Undo.SetTransformParent(go.transform, goRoot.transform, "Create Bone");
                                            }
                                            else
                                            {
                                                int parentIndex = createList.FindIndex(a => a.name == tp.parentName);
                                                Debug.Assert(parentIndex >= 0);
                                                GameObject parent = createList[parentIndex];
                                                Assert.IsNotNull(parent);
                                                Undo.SetTransformParent(go.transform, parent.transform, "Create Bone");
                                            }
                                            go.transform.localPosition = tp.position;
                                            go.transform.localRotation = Quaternion.identity;
                                            go.transform.localScale    = Vector3.one;
                                            createList.Add(go);
                                        }
                                    }
                                    animationTarget.humanDescription.firstAutomapDone = false;
                                    Refresh();

                                    if (prefabType == PrefabType.Prefab)
                                    {
                                        PrefabUtility.ReplacePrefab(goRoot, PrefabUtility.GetPrefabParent(goRoot), ReplacePrefabOptions.ConnectToPrefab);
                                        DestroyImmediate(goRoot);
                                    }
                                };
                                GenericMenu menu = new GenericMenu();
                                {
                                    var enu = boneTemplates.GetEnumerator();
                                    while (enu.MoveNext())
                                    {
                                        var value = enu.Current.Value;
                                        menu.AddItem(new GUIContent(enu.Current.Key), false, () => { MenuCallback(value); });
                                    }
                                }
                                menu.ShowAsContext();
                                #endregion
                            }
                        }
                        EditorGUILayout.EndHorizontal();
                        if (baseTarget.advancedMode)
                        {
                            EditorGUI.indentLevel++;
                            if (animationTarget.rootBone != null)
                            {
                                #region Root
                                {
                                    EditorGUI.BeginDisabledGroup(prefabType == PrefabType.Prefab);
                                    EditorGUILayout.BeginHorizontal();
                                    {
                                        EditorGUILayout.LabelField("Root");
                                        #region Add Root Bone
                                        {
                                            if (GUILayout.Button("Add Root Bone"))
                                            {
                                                var beforeRoot = animationTarget.rootBone.GetComponent <VoxelSkinnedAnimationObjectBone>();
                                                Undo.RecordObject(beforeRoot, "Add Root Bone");
                                                GameObject go = new GameObject("Root");
                                                Undo.RegisterCreatedObjectUndo(go, "Add Root Bone");
                                                Undo.AddComponent <VoxelSkinnedAnimationObjectBone>(go);
                                                Undo.SetTransformParent(go.transform, animationTarget.transform, "Add Root Bone");
                                                go.transform.localPosition = Vector3.zero;
                                                go.transform.localRotation = Quaternion.identity;
                                                go.transform.localScale    = Vector3.one;
                                                Undo.SetTransformParent(animationTarget.rootBone, go.transform, "Add Root Bone");
                                                EditorGUIUtility.PingObject(go);
                                                animationCore.UpdateBoneWeight();
                                                animationCore.FixMissingAnimation();
                                                #region FixBoneWeight
                                                for (int i = 0; i < animationTarget.voxelData.voxels.Length; i++)
                                                {
                                                    var pos = animationTarget.voxelData.voxels[i].position;
                                                    for (var vindex = (VoxelBase.VoxelVertexIndex) 0; vindex < VoxelBase.VoxelVertexIndex.Total; vindex++)
                                                    {
                                                        var weight = animationCore.GetBoneWeight(pos, vindex);
                                                        var power  = 0f;
                                                        if (weight.boneIndex0 == 0 && weight.weight0 > 0f)
                                                        {
                                                            power = weight.weight0;
                                                        }
                                                        else if (weight.boneIndex1 == 0 && weight.weight1 > 0f)
                                                        {
                                                            power = weight.weight1;
                                                        }
                                                        else if (weight.boneIndex2 == 0 && weight.weight2 > 0f)
                                                        {
                                                            power = weight.weight2;
                                                        }
                                                        else if (weight.boneIndex3 == 0 && weight.weight3 > 0f)
                                                        {
                                                            power = weight.weight3;
                                                        }
                                                        if (power <= 0f)
                                                        {
                                                            continue;
                                                        }
                                                        var weights = beforeRoot.weightData.GetWeight(pos);
                                                        if (weights == null)
                                                        {
                                                            weights = new WeightData.VoxelWeight();
                                                        }
                                                        weights.SetWeight(vindex, power);
                                                        beforeRoot.weightData.SetWeight(pos, weights);
                                                    }
                                                }
                                                #endregion
                                                Refresh();
                                                InternalEditorUtility.RepaintAllViews();
                                            }
                                        }
                                        #endregion
                                        #region Remove Root Bone
                                        {
                                            bool disabled = false;
                                            {
                                                int count = 0;
                                                for (int i = 0; i < animationTarget.rootBone.childCount; i++)
                                                {
                                                    var child = animationTarget.rootBone.GetChild(i);
                                                    if (child.GetComponent <VoxelSkinnedAnimationObjectBone>() != null)
                                                    {
                                                        count++;
                                                    }
                                                }
                                                disabled = count != 1;
                                            }
                                            EditorGUI.BeginDisabledGroup(disabled);
                                            if (GUILayout.Button("Remove Root Bone"))
                                            {
                                                for (int i = 0; i < animationTarget.rootBone.childCount; i++)
                                                {
                                                    var child = animationTarget.rootBone.GetChild(i);
                                                    if (child.GetComponent <VoxelSkinnedAnimationObjectBone>() != null)
                                                    {
                                                        Undo.RecordObject(animationTarget.rootBone, "Remove Root Bone");
                                                    }
                                                    Undo.SetTransformParent(child, animationTarget.transform, "Remove Root Bone");
                                                    i--;
                                                }
                                                Undo.DestroyObjectImmediate(animationTarget.rootBone.gameObject);
                                                animationCore.UpdateBoneBindposes();
                                                EditorGUIUtility.PingObject(animationTarget.rootBone.gameObject);
                                                animationCore.FixMissingAnimation();
                                                Refresh();
                                                InternalEditorUtility.RepaintAllViews();
                                            }
                                            EditorGUI.EndDisabledGroup();
                                        }
                                        #endregion
                                    }
                                    EditorGUILayout.EndHorizontal();
                                    EditorGUI.EndDisabledGroup();
                                }
                                #endregion
                                #region Reset
                                {
                                    EditorGUILayout.BeginHorizontal();
                                    EditorGUILayout.LabelField("Reset");
                                    {
                                        if (GUILayout.Button("All"))
                                        {
                                            for (int i = 0; i < animationTarget.bones.Length; i++)
                                            {
                                                Undo.RecordObject(animationTarget.bones[i].transform, "Reset Bone Transform");
                                                if (animationTarget.bones[i].bonePositionSave)
                                                {
                                                    animationTarget.bones[i].transform.localPosition = animationTarget.bones[i].bonePosition;
                                                    animationTarget.bones[i].transform.localRotation = animationTarget.bones[i].boneRotation;
                                                }
                                                animationTarget.bones[i].transform.localScale = Vector3.one;
                                            }
                                        }
                                        if (GUILayout.Button("Position"))
                                        {
                                            for (int i = 0; i < animationTarget.bones.Length; i++)
                                            {
                                                Undo.RecordObject(animationTarget.bones[i].transform, "Reset Bone Position");
                                                if (animationTarget.bones[i].bonePositionSave)
                                                {
                                                    animationTarget.bones[i].transform.localPosition = animationTarget.bones[i].bonePosition;
                                                }
                                            }
                                        }
                                        if (GUILayout.Button("Rotation"))
                                        {
                                            for (int i = 0; i < animationTarget.bones.Length; i++)
                                            {
                                                Undo.RecordObject(animationTarget.bones[i].transform, "Reset Bone Rotation");
                                                if (animationTarget.bones[i].bonePositionSave)
                                                {
                                                    animationTarget.bones[i].transform.localRotation = animationTarget.bones[i].boneRotation;
                                                }
                                            }
                                        }
                                        if (GUILayout.Button("Scale"))
                                        {
                                            for (int i = 0; i < animationTarget.bones.Length; i++)
                                            {
                                                Undo.RecordObject(animationTarget.bones[i].transform, "Reset Bone Scale");
                                                animationTarget.bones[i].transform.localScale = Vector3.one;
                                            }
                                        }
                                    }
                                    EditorGUILayout.EndHorizontal();
                                }
                                #endregion
                                #region Count
                                {
                                    EditorGUILayout.LabelField("Count", animationTarget.rootBone != null ? animationTarget.bones.Length.ToString() : "");
                                }
                                #endregion
                            }
                            EditorGUI.indentLevel--;
                        }
                        if (animationTarget.mesh != null)
                        {
                            if (animationTarget.rootBone == null)
                            {
                                EditorGUILayout.HelpBox("Bone not found. Please create bone.", MessageType.Error);
                            }
                        }
                    }
                    if (animationTarget.rootBone != null)
                    {
                        EditorGUILayout.LabelField("Rig", EditorStyles.boldLabel);
                        {
                            EditorGUI.indentLevel++;
                            {
                                #region Update the Animator Avatar
                                if (baseTarget.advancedMode)
                                {
                                    EditorGUI.BeginChangeCheck();
                                    var updateAnimatorAvatar = EditorGUILayout.ToggleLeft("Update the Animator Avatar", animationTarget.updateAnimatorAvatar);
                                    if (EditorGUI.EndChangeCheck())
                                    {
                                        if (EditorUtility.DisplayDialog("Update the Animator Avatar", "It will be changed.\nAre you sure?", "ok", "cancel"))
                                        {
                                            UndoRecordObject("Inspector");
                                            animationTarget.updateAnimatorAvatar = updateAnimatorAvatar;
                                            baseCore.SetRendererCompornent();
                                        }
                                    }
                                }
                                #endregion
                                #region AnimationType
                                {
                                    EditorGUI.BeginChangeCheck();
                                    var rigAnimationType = (VoxelSkinnedAnimationObject.RigAnimationType)EditorGUILayout.EnumPopup("Animation Type", animationTarget.rigAnimationType);
                                    if (EditorGUI.EndChangeCheck())
                                    {
                                        UndoRecordObject("Inspector");
                                        #region ChangeAnimationType
                                        Action RemoveAnimation = () =>
                                        {
                                            EditorApplication.delayCall += () =>
                                            {
                                                if (animationTarget == null || animationTarget.gameObject == null)
                                                {
                                                    return;
                                                }
                                                var animation = animationTarget.gameObject.GetComponent <Animation>();
                                                if (animation != null)
                                                {
                                                    Undo.DestroyObjectImmediate(animation);
                                                }
                                            };
                                        };
                                        Action RemoveAnimator = () =>
                                        {
                                            EditorApplication.delayCall += () =>
                                            {
                                                if (animationTarget == null || animationTarget.gameObject == null)
                                                {
                                                    return;
                                                }
                                                var animator = animationTarget.gameObject.GetComponent <Animator>();
                                                if (animator != null)
                                                {
                                                    Undo.DestroyObjectImmediate(animator);
                                                }
                                            };
                                        };
                                        Action CreateAnimation = () =>
                                        {
                                            var animation = animationTarget.gameObject.GetComponent <Animation>();
                                            if (animation == null)
                                            {
                                                animation = animationTarget.gameObject.AddComponent <Animation>();
                                                Undo.RegisterCreatedObjectUndo(animation, "Inspector");
                                            }
                                        };
                                        Action CreateAnimator = () =>
                                        {
                                            var animator = animationTarget.gameObject.GetComponent <Animator>();
                                            if (animator == null)
                                            {
                                                animator = animationTarget.gameObject.AddComponent <Animator>();
                                                Undo.RegisterCreatedObjectUndo(animator, "Inspector");
                                            }
                                        };
                                        switch (rigAnimationType)
                                        {
                                        case VoxelSkinnedAnimationObject.RigAnimationType.None:
                                            RemoveAnimation();
                                            RemoveAnimator();
                                            break;

                                        case VoxelSkinnedAnimationObject.RigAnimationType.Legacy:
                                            RemoveAnimator();
                                            CreateAnimation();
                                            break;

                                        case VoxelSkinnedAnimationObject.RigAnimationType.Generic:
                                        case VoxelSkinnedAnimationObject.RigAnimationType.Humanoid:
                                            RemoveAnimation();
                                            CreateAnimator();
                                            break;
                                        }
                                        #endregion
                                        VoxelHumanoidConfigreAvatar.Destroy();
                                        animationTarget.rigAnimationType = rigAnimationType;
                                        animationTarget.humanDescription.firstAutomapDone = false;
                                        Refresh();
                                    }
                                }
                                #endregion
                                #region Avatar
                                if (baseTarget.advancedMode &&
                                    (animationTarget.rigAnimationType == VoxelSkinnedAnimationObject.RigAnimationType.Generic || animationTarget.rigAnimationType == VoxelSkinnedAnimationObject.RigAnimationType.Humanoid))
                                {
                                    EditorGUILayout.BeginHorizontal();
                                    {
                                        EditorGUI.BeginDisabledGroup(true);
                                        EditorGUILayout.ObjectField("Avatar", animationTarget.avatar, typeof(Avatar), false);
                                        EditorGUI.EndDisabledGroup();
                                    }
                                    if (animationTarget.avatar != null)
                                    {
                                        if (!IsMainAsset(animationTarget.avatar))
                                        {
                                            if (GUILayout.Button("Save", GUILayout.Width(48), GUILayout.Height(16)))
                                            {
                                                #region Create Avatar
                                                string path = EditorUtility.SaveFilePanel("Save avatar", objectCore.GetDefaultPath(), string.Format("{0}_avatar.asset", baseTarget.gameObject.name), "asset");
                                                if (!string.IsNullOrEmpty(path))
                                                {
                                                    if (path.IndexOf(Application.dataPath) < 0)
                                                    {
                                                        EditorUtility.DisplayDialog("Error!", "Please save a lower than \"Assets\"", "ok");
                                                    }
                                                    else
                                                    {
                                                        UndoRecordObject("Save Avatar");
                                                        path = path.Replace(Application.dataPath, "Assets");
                                                        AssetDatabase.CreateAsset(Avatar.Instantiate(animationTarget.avatar), path);
                                                        animationTarget.avatar = AssetDatabase.LoadAssetAtPath <Avatar>(path);
                                                        Refresh();
                                                    }
                                                }
                                                #endregion
                                            }
                                        }
                                        {
                                            if (GUILayout.Button("Reset", GUILayout.Width(48), GUILayout.Height(16)))
                                            {
                                                #region Reset Avatar
                                                UndoRecordObject("Reset Avatar");
                                                animationTarget.avatar = null;
                                                Refresh();
                                                #endregion
                                            }
                                        }
                                    }
                                    EditorGUILayout.EndHorizontal();
                                }
                                if ((animationTarget.rigAnimationType == VoxelSkinnedAnimationObject.RigAnimationType.Generic || animationTarget.rigAnimationType == VoxelSkinnedAnimationObject.RigAnimationType.Humanoid))
                                {
                                    EditorGUI.indentLevel++;
                                    if (animationTarget.avatar != null && !animationTarget.avatar.isValid)
                                    {
                                        EditorGUILayout.HelpBox("Invalid mecanim avatar.\nCheck the bone please.", MessageType.Error);
                                    }
                                    #region AvatarSetWarning
                                    if (animationTarget.updateAnimatorAvatar)
                                    {
                                        var animator = animationTarget.GetComponent <Animator>();
                                        if (animator != null && animator.avatar != animationTarget.avatar)
                                        {
                                            EditorGUILayout.HelpBox("Anatator's Avatar is not set.\nIt needs to be updated.\nPlease press 'Refresh'.", MessageType.Warning);
                                        }
                                    }
                                    #endregion
                                    EditorGUI.indentLevel--;
                                }
                                #endregion
                                #region Configre Avatar
                                if (animationTarget.rigAnimationType == VoxelSkinnedAnimationObject.RigAnimationType.Humanoid)
                                {
                                    EditorGUI.BeginDisabledGroup(prefabType == PrefabType.Prefab);
                                    EditorGUILayout.BeginHorizontal();
                                    EditorGUILayout.Space();
                                    if (GUILayout.Button("Configure Avatar", VoxelHumanoidConfigreAvatar.instance == null ? GUI.skin.button : guiStyleBoldActiveButton))
                                    {
                                        if (VoxelHumanoidConfigreAvatar.instance == null)
                                        {
                                            VoxelHumanoidConfigreAvatar.Create(animationTarget);
                                        }
                                        else
                                        {
                                            VoxelHumanoidConfigreAvatar.instance.Close();
                                        }
                                    }
                                    EditorGUILayout.Space();
                                    EditorGUILayout.EndHorizontal();
                                    EditorGUI.EndDisabledGroup();
                                    EditorGUILayout.Space();
                                }
                                #endregion
                            }
                            EditorGUI.indentLevel--;
                        }
                    }
                    if (baseTarget.advancedMode && animationTarget.rootBone != null)
                    {
                        TypeTitle(animationTarget.mesh, "Mesh");
                        {
                            EditorGUI.indentLevel++;
                            {
                                #region skinnedMeshBoundsUpdate
                                {
                                    EditorGUI.BeginChangeCheck();
                                    var skinnedMeshBoundsUpdate = EditorGUILayout.ToggleLeft("Update the Skinned Mesh Renderer Bounds", animationTarget.skinnedMeshBoundsUpdate);
                                    if (EditorGUI.EndChangeCheck())
                                    {
                                        if (EditorUtility.DisplayDialog("Update the Skinned Mesh Renderer Bounds", "It will be changed.\nAre you sure?", "ok", "cancel"))
                                        {
                                            UndoRecordObject("Inspector");
                                            animationTarget.skinnedMeshBoundsUpdate = skinnedMeshBoundsUpdate;
                                            animationCore.UpdateSkinnedMeshBounds();
                                        }
                                    }
                                }
                                #endregion
                                #region skinnedMeshBoundsUpdateScale
                                if (animationTarget.skinnedMeshBoundsUpdate)
                                {
                                    EditorGUI.indentLevel++;
                                    EditorGUI.BeginChangeCheck();
                                    var skinnedMeshBoundsUpdateScale = EditorGUILayout.Vector3Field("Scale", animationTarget.skinnedMeshBoundsUpdateScale);
                                    if (EditorGUI.EndChangeCheck())
                                    {
                                        UndoRecordObject("Inspector");
                                        animationTarget.skinnedMeshBoundsUpdateScale = skinnedMeshBoundsUpdateScale;
                                        animationCore.UpdateSkinnedMeshBounds();
                                    }
                                    EditorGUI.indentLevel--;
                                }
                                #endregion
                            }
                            EditorGUI.indentLevel--;
                        }
                    }
                    EditorGUILayout.EndVertical();
                }
            }
            #endregion

            base.InspectorGUI_Refresh();
        }