summaryrefslogtreecommitdiff
path: root/Assets/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupArrayDrawer.cs
blob: bcf8bbdb7f06c5e1e0b6ad7efbedc2f488ffd658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Cristian Pop - https://boxophobic.com/

using UnityEngine;
using UnityEditor;

namespace Boxophobic.StyledGUI
{
    [CustomPropertyDrawer(typeof(StyledPopupArray))]
    public class StyledPopupArrayAttributeDrawer : PropertyDrawer
    {
        StyledPopupArray a;
        private int index = 0;

        public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
        {
            a = (StyledPopupArray)attribute;

            var arrProp = property.serializedObject.FindProperty(a.array);

            var arr = new string[arrProp.arraySize];

            for (int i = 0; i < arrProp.arraySize; i++)
            {
                arr[i] = arrProp.GetArrayElementAtIndex(i).stringValue;
            }

            index = EditorGUILayout.Popup(property.displayName, index, arr);
            property.intValue = index;
        }

        public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
        {
            return -2;
        }
    }
}