summaryrefslogtreecommitdiff
path: root/Assets/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledToggleDrawer.cs
blob: 79fb454334ba1462cabfd5fe7ca425d673afa520 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Cristian Pop - https://boxophobic.com/

using UnityEngine;
using UnityEditor;
using System;

namespace Boxophobic.StyledGUI
{
    public class StyledToggleDrawer : MaterialPropertyDrawer
    {
        public float width = 0;

        public StyledToggleDrawer()
        {

        }

        public StyledToggleDrawer(float width)
        {
            this.width = width;
        }

        public override void OnGUI(Rect position, MaterialProperty prop, String label, MaterialEditor materialEditor)
        {
            Material material = materialEditor.target as Material;

            if (width == 0)
            {
                bool toggle = false;

                if (prop.floatValue > 0.5f)
                {
                    toggle = true;
                }

                toggle = EditorGUILayout.Toggle(label, toggle);

                if (toggle)
                {
                    prop.floatValue = 1;
                }
                else
                {
                    prop.floatValue = 0;
                }
            }
            else
            {
                GUILayout.BeginHorizontal();

                GUILayout.Label(label);

                bool toggle = false;

                if (prop.floatValue > 0.5f)
                {
                    toggle = true;
                }

                toggle = GUILayout.Toggle(toggle, "", GUILayout.Width(width));

                if (toggle)
                {
                    prop.floatValue = 1;
                }
                else
                {
                    prop.floatValue = 0;
                }

                GUILayout.EndHorizontal();
            }
        }

        public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
        {
            return -2;
        }
    }
}