PropertyRow.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System.Linq;
  2. using UnityEngine;
  3. using UnityEngine.UIElements;
  4. namespace UnityEditor.ShaderGraph.Drawing
  5. {
  6. class PropertyRow : VisualElement
  7. {
  8. VisualElement m_ContentContainer;
  9. VisualElement m_LabelContainer;
  10. public override VisualElement contentContainer
  11. {
  12. get { return m_ContentContainer; }
  13. }
  14. public VisualElement label
  15. {
  16. get { return (m_LabelContainer.childCount > 0)?m_LabelContainer[0]:null; }
  17. set
  18. {
  19. if(m_LabelContainer.childCount > 0)
  20. {
  21. m_LabelContainer.Clear();
  22. }
  23. m_LabelContainer.Add(value);
  24. }
  25. }
  26. public PropertyRow(VisualElement label = null)
  27. {
  28. styleSheets.Add(Resources.Load<StyleSheet>("Styles/PropertyRow"));
  29. VisualElement container = new VisualElement {name = "container"};
  30. m_ContentContainer = new VisualElement { name = "content" };
  31. m_LabelContainer = new VisualElement {name = "label" };
  32. m_LabelContainer.Add(label);
  33. container.Add(m_LabelContainer);
  34. container.Add(m_ContentContainer);
  35. hierarchy.Add(container);
  36. }
  37. }
  38. }