ButtonControl.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Reflection;
  3. using UnityEditor.UIElements;
  4. using UnityEngine;
  5. using UnityEngine.UIElements;
  6. namespace UnityEditor.ShaderGraph.Drawing.Controls
  7. {
  8. [AttributeUsage(AttributeTargets.Property)]
  9. class ButtonControlAttribute : Attribute, IControlAttribute
  10. {
  11. public ButtonControlAttribute()
  12. {
  13. }
  14. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  15. {
  16. return new ButtonControlView(node, propertyInfo);
  17. }
  18. }
  19. [Serializable]
  20. struct ButtonConfig
  21. {
  22. public string text;
  23. public Action action;
  24. }
  25. class ButtonControlView : VisualElement
  26. {
  27. public ButtonControlView(AbstractMaterialNode node, PropertyInfo propertyInfo)
  28. {
  29. AbstractMaterialNode m_Node;
  30. m_Node = node;
  31. Type type = propertyInfo.PropertyType;
  32. if (type != typeof(ButtonConfig))
  33. {
  34. throw new ArgumentException("Property must be a ButtonConfig.", "propertyInfo");
  35. }
  36. var value = (ButtonConfig)propertyInfo.GetValue(m_Node, null);
  37. Add(new Button(value.action) { text = value.text});
  38. }
  39. }
  40. }