GradientEdge.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using UnityEngine;
  2. using UnityEditor.Experimental.GraphView;
  3. using UnityEngine.UIElements;
  4. namespace UnityEditor.ShaderGraph.Drawing
  5. {
  6. class GradientEdge : Edge
  7. {
  8. readonly CustomStyleProperty<Color> k_InputColorProperty = new CustomStyleProperty<Color>("--edge-input-color");
  9. readonly CustomStyleProperty<Color> k_OutputColorProperty = new CustomStyleProperty<Color>("--edge-output-color");
  10. Color m_InputColor;
  11. Color m_OutputColor;
  12. public Color inputColor
  13. {
  14. get { return m_InputColor; }
  15. }
  16. public Color outputColor
  17. {
  18. get { return m_OutputColor; }
  19. }
  20. public GradientEdge()
  21. {
  22. m_InputColor = defaultColor;
  23. m_OutputColor = defaultColor;
  24. RegisterCallback<CustomStyleResolvedEvent>(OnCustomStyleResolved);
  25. }
  26. public void UpdateClasses(ConcreteSlotValueType outputType, ConcreteSlotValueType inputType)
  27. {
  28. ClearClassList();
  29. AddToClassList("edge");
  30. AddToClassList("from" + outputType);
  31. AddToClassList("to" + inputType);
  32. }
  33. private void OnCustomStyleResolved(CustomStyleResolvedEvent e)
  34. {
  35. Color inputValue;
  36. Color outputValue;
  37. ICustomStyle styles = e.customStyle;
  38. if (styles.TryGetValue(k_InputColorProperty, out inputValue))
  39. m_InputColor = inputValue;
  40. if (styles.TryGetValue(k_OutputColorProperty, out outputValue))
  41. m_OutputColor = outputValue;
  42. }
  43. }
  44. }