EnumControl.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System;
  2. using System.Reflection;
  3. using UnityEngine;
  4. using UnityEditor.UIElements;
  5. using UnityEngine.UIElements;
  6. namespace UnityEditor.ShaderGraph.Drawing.Controls
  7. {
  8. [AttributeUsage(AttributeTargets.Property)]
  9. class EnumControlAttribute : Attribute, IControlAttribute
  10. {
  11. string m_Label;
  12. public EnumControlAttribute(string label = null)
  13. {
  14. m_Label = label;
  15. }
  16. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  17. {
  18. return new EnumControlView(m_Label, node, propertyInfo);
  19. }
  20. }
  21. class EnumControlView : VisualElement
  22. {
  23. AbstractMaterialNode m_Node;
  24. PropertyInfo m_PropertyInfo;
  25. public EnumControlView(string label, AbstractMaterialNode node, PropertyInfo propertyInfo)
  26. {
  27. styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/EnumControlView"));
  28. m_Node = node;
  29. m_PropertyInfo = propertyInfo;
  30. if (!propertyInfo.PropertyType.IsEnum)
  31. throw new ArgumentException("Property must be an enum.", "propertyInfo");
  32. Add(new Label(label ?? ObjectNames.NicifyVariableName(propertyInfo.Name)));
  33. var enumField = new EnumField((Enum)m_PropertyInfo.GetValue(m_Node, null));
  34. enumField.RegisterValueChangedCallback(OnValueChanged);
  35. Add(enumField);
  36. }
  37. void OnValueChanged(ChangeEvent<Enum> evt)
  38. {
  39. var value = (Enum)m_PropertyInfo.GetValue(m_Node, null);
  40. if (!evt.newValue.Equals(value))
  41. {
  42. m_Node.owner.owner.RegisterCompleteObjectUndo("Change " + m_Node.name);
  43. m_PropertyInfo.SetValue(m_Node, evt.newValue, null);
  44. }
  45. }
  46. }
  47. }