PixelCacheProfiler.uxml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <UXML xmlns:ui="UnityEngine.UIElements">
  2. <ui:VisualElement name="content">
  3. <Style path="Styles/PixelCacheProfiler"/>
  4. <ui:Label name="title" text="Pixel Cache Profiler"/>
  5. <ui:VisualElement class="row">
  6. <ui:Label text="Total pixel caches: "/>
  7. <ui:Label name="totalLabel" text="-"/>
  8. </ui:VisualElement>
  9. <ui:VisualElement class="indented row">
  10. <ui:Label text="Node contents: "/>
  11. <ui:Label name="totalNodeContentsLabel" text="-"/>
  12. </ui:VisualElement>
  13. <ui:VisualElement class="indented row">
  14. <ui:Label text="Node previews: "/>
  15. <ui:Label name="totalPreviewsLabel" text="-"/>
  16. </ui:VisualElement>
  17. <ui:VisualElement class="indented row">
  18. <ui:Label text="Inline inputs: "/>
  19. <ui:Label name="totalInlinesLabel" text="-"/>
  20. </ui:VisualElement>
  21. <ui:VisualElement class="row">
  22. <ui:Label text="Dirty pixel caches: "/>
  23. <ui:Label name="dirtyLabel" text="-"/>
  24. </ui:VisualElement>
  25. <ui:VisualElement class="indented row">
  26. <ui:Label text="Node contents: "/>
  27. <ui:Label name="dirtyNodeContentsLabel" text="-"/>
  28. </ui:VisualElement>
  29. <ui:VisualElement class="indented row">
  30. <ui:Label text="Node previews: "/>
  31. <ui:Label name="dirtyPreviewsLabel" text="-"/>
  32. </ui:VisualElement>
  33. <ui:VisualElement class="indented row">
  34. <ui:Label text="Inline inputs: "/>
  35. <ui:Label name="dirtyInlinesLabel" text="-"/>
  36. </ui:VisualElement>
  37. </ui:VisualElement>
  38. </UXML>