-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFloatGradeDrawer.cs
68 lines (59 loc) · 3.37 KB
/
FloatGradeDrawer.cs
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
#if UNITY_EDITOR
using System;
using System.Linq;
using UnityEditor;
using UnityEngine;
[CustomPropertyDrawer(typeof(FloatGrade), true)]
public class FloatGradePropertyDrawer : PropertyDrawer {
public bool showExtraProps;
public readonly static Color focusColor = new Color(1, 0.2f, 0.2f, 0.25f);
private const float fieldPadding = 20;
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) {
Undo.RecordObject(property.serializedObject.targetObject, "Changed FloatGrade.");
EditorGUI.BeginProperty(position, label, property);
var field = (FloatGrade)fieldInfo.GetValue(property.serializedObject.targetObject);
Rect rectFoldout = new Rect(position.min.x, position.y, position.size.x, EditorGUIUtility.singleLineHeight);
Rect previewRect = new Rect(position.x + EditorGUIUtility.labelWidth, position.y, (position.size.x - EditorGUIUtility.labelWidth) / 2f, EditorGUIUtility.singleLineHeight);
Rect rectEnum = new Rect(previewRect.x + previewRect.width, position.y, previewRect.width, EditorGUIUtility.singleLineHeight);
Rect lockedRect = new Rect(previewRect.x, previewRect.y, previewRect.width - 20, previewRect.height);
showExtraProps = EditorGUI.Foldout(rectFoldout, showExtraProps, label);
field.SetDifficulty((Difficulty)EditorGUI.EnumPopup(rectEnum, field.Difficulty));
EditorGUI.BeginDisabledGroup(true);
EditorGUI.FloatField(lockedRect, field.Value);
EditorGUI.EndDisabledGroup();
if (showExtraProps) {
int index = 0;
float lineHeight = EditorGUIUtility.singleLineHeight * 2 + 5;
foreach (Difficulty diff in Enum.GetValues(typeof(Difficulty)).OfType<Difficulty>()) {
Rect diffRect = new Rect(position.x + EditorGUIUtility.labelWidth, position.y + lineHeight, previewRect.width - fieldPadding, EditorGUIUtility.singleLineHeight);
Rect labelRect = new Rect(diffRect.x, diffRect.y - EditorGUIUtility.singleLineHeight, diffRect.width, EditorGUIUtility.singleLineHeight);
if (index % 2 == 1) {
diffRect.x += diffRect.width + fieldPadding;
diffRect.width += fieldPadding;
labelRect.x += labelRect.width + fieldPadding;
labelRect.width += fieldPadding;
}
EditorGUI.LabelField(labelRect, diff.ToString());
field.SetValue(diff, EditorGUI.FloatField(diffRect, field.GetValue(diff)));
EditorUtility.SetDirty(property.serializedObject.targetObject);
if (diff == field.Difficulty) {
EditorGUI.DrawRect(diffRect, focusColor);
}
index++;
if (index % 2 == 0 && index > 0) {
lineHeight += EditorGUIUtility.singleLineHeight * 2;
index = 0;
}
}
}
EditorGUI.EndProperty();
}
public override float GetPropertyHeight(SerializedProperty property, GUIContent label) {
if (showExtraProps) {
return EditorGUIUtility.singleLineHeight + EditorGUIUtility.singleLineHeight * (float)Math.Round((double)Enum.GetValues(typeof(Difficulty)).Length / 2, MidpointRounding.AwayFromZero) * 2 + 10;
} else {
return EditorGUIUtility.singleLineHeight;
}
}
}
#endif