コード例 #1
0
    private float renderAnimationsets(Rect pos, SerializedProperty prop)
    {
        SerializedProperty folded = prop.FindPropertyRelative("animationsetFolded");
        bool fold = folded.boolValue;

        EditorUtil.folder(pos.x + EditorGUI.indentLevel * 12, pos.y, folded);
        EditorGUI.LabelField(new Rect(pos.x + EditorUtil.buttonSize, pos.y, pos.width - 2 * EditorUtil.buttonSize, EditorUtil.height), new GUIContent("Animation Sets"));

        SerializedProperty animationsets = prop.FindPropertyRelative("animationsets");

        if (EditorUtil.plus(pos.x + pos.width - EditorUtil.buttonSize, pos.y, "New Animation Set"))
        {
            AnimationsetDrawer.construct(animationsets.GetArrayElementAtIndex(animationsets.arraySize++));
        }

        float ay = EditorUtil.row;

        if (animationsets == null)
        {
            return(ay);
        }
        if (!fold)
        {
            EditorGUI.indentLevel++;
            float[] h = new float[animationsets.arraySize];
            for (int i = 0; i < animationsets.arraySize; i++)
            {
                SerializedProperty animationset = animationsets.GetArrayElementAtIndex(i);
                float animationsetHeight        = AnimationsetDrawer.calculateHeight(animationset);

                //Draw Animation Set
                EditorGUI.PropertyField(new Rect(pos.x, pos.y + ay, pos.width, animationsetHeight), animationset, GUIContent.none);

                if (animationset.FindPropertyRelative("folded").boolValue)
                {
                    if (EditorUtil.ex(pos.x + pos.width - EditorUtil.buttonSize, pos.y + ay, "Delete Animation Set"))
                    {
                        animationsets.DeleteArrayElementAtIndex(i);
                    }
                }

                h[i] = ay;
                ay  += animationsetHeight;
            }
            EditorUtil.foldLines(pos.x + EditorGUI.indentLevel * 12, pos.y, h);
            EditorGUI.indentLevel--;
        }
        return(ay);
    }
コード例 #2
0
    public static float calculateHeight(SerializedProperty prop)
    {
        float h = EditorUtil.row;

        if (!prop.FindPropertyRelative("animationsetFolded").boolValue)
        {
            SerializedProperty animationsets = prop.FindPropertyRelative("animationsets");
            for (int i = 0; i < animationsets.arraySize; i++)
            {
                SerializedProperty animationset = animationsets.GetArrayElementAtIndex(i);
                h += AnimationsetDrawer.calculateHeight(animationset);
            }
        }
        return(h);
    }