Skip to content

Instantly share code, notes, and snippets.

@andykorth
Created November 13, 2018 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andykorth/25983c3e1ae3f6936d35fb15f98aeca8 to your computer and use it in GitHub Desktop.
Save andykorth/25983c3e1ae3f6936d35fb15f98aeca8 to your computer and use it in GitHub Desktop.
[CustomPropertyDrawer(typeof(EnumFlagAttribute))]
public class EnumFlagDrawer : PropertyDrawer {
public override void OnGUI (Rect position, SerializedProperty property, GUIContent label) {
Enum targetEnum = GetBaseProperty<Enum>(property);
EditorGUI.BeginProperty(position, label, property);
EditorGUI.BeginChangeCheck();
#if UNITY_2017_3_OR_NEWER
Enum enumNew = EditorGUI.EnumFlagsField(position, label, targetEnum);
#else
Enum enumNew = EditorGUI.EnumMaskField(position, label, targetEnum);
#endif
if (EditorGUI.EndChangeCheck() || !property.hasMultipleDifferentValues) {
property.intValue = (int)Convert.ChangeType(enumNew, targetEnum.GetType());
}
EditorGUI.EndProperty();
}
static T GetBaseProperty<T>(SerializedProperty prop) {
// Separate the steps it takes to get to this property
string[] separatedPaths = prop.propertyPath.Split('.');
// Go down to the root of this serialized property
System.Object reflectionTarget = prop.serializedObject.targetObject as object;
// Walk down the path to get the target object
foreach (var path in separatedPaths) {
FieldInfo fieldInfo = reflectionTarget.GetType().GetField(path, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
reflectionTarget = fieldInfo.GetValue(reflectionTarget);
}
return (T)reflectionTarget;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment