NodeSettingsView.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Linq;
  3. using UnityEditor.Graphing;
  4. using UnityEngine;
  5. using UnityEngine.UIElements;
  6. namespace UnityEditor.ShaderGraph.Drawing
  7. {
  8. class NodeSettingsView : VisualElement
  9. {
  10. VisualElement m_ContentContainer;
  11. public NodeSettingsView()
  12. {
  13. pickingMode = PickingMode.Ignore;
  14. styleSheets.Add(Resources.Load<StyleSheet>("Styles/NodeSettings"));
  15. var uxml = Resources.Load<VisualTreeAsset>("UXML/NodeSettings");
  16. uxml.CloneTree(this);
  17. // Get the element we want to use as content container
  18. m_ContentContainer = this.Q("contentContainer");
  19. RegisterCallback<MouseDownEvent>(OnMouseDown);
  20. RegisterCallback<MouseUpEvent>(OnMouseUp);
  21. }
  22. void OnMouseUp(MouseUpEvent evt)
  23. {
  24. evt.StopPropagation();
  25. }
  26. void OnMouseDown(MouseDownEvent evt)
  27. {
  28. evt.StopPropagation();
  29. }
  30. public override VisualElement contentContainer
  31. {
  32. get { return m_ContentContainer; }
  33. }
  34. }
  35. }