IntegerControl.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 IntegerControlAttribute : Attribute, IControlAttribute
  10. {
  11. string m_Label;
  12. public IntegerControlAttribute(string label = null)
  13. {
  14. m_Label = label;
  15. }
  16. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  17. {
  18. return new IntegerControlView(m_Label, node, propertyInfo);
  19. }
  20. }
  21. class IntegerControlView : VisualElement
  22. {
  23. AbstractMaterialNode m_Node;
  24. PropertyInfo m_PropertyInfo;
  25. public IntegerControlView(string label, AbstractMaterialNode node, PropertyInfo propertyInfo)
  26. {
  27. styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/IntegerControlView"));
  28. m_Node = node;
  29. m_PropertyInfo = propertyInfo;
  30. if (propertyInfo.PropertyType != typeof(int))
  31. throw new ArgumentException("Property must be of type integer.", "propertyInfo");
  32. label = label ?? ObjectNames.NicifyVariableName(propertyInfo.Name);
  33. if (!string.IsNullOrEmpty(label))
  34. Add(new Label(label));
  35. var intField = new IntegerField { value = (int)m_PropertyInfo.GetValue(m_Node, null) };
  36. intField.RegisterValueChangedCallback(OnChange);
  37. Add(intField);
  38. }
  39. void OnChange(ChangeEvent<int> evt)
  40. {
  41. m_Node.owner.owner.RegisterCompleteObjectUndo("Integer Change");
  42. m_PropertyInfo.SetValue(m_Node, evt.newValue, null);
  43. this.MarkDirtyRepaint();
  44. }
  45. }
  46. }