ItemSelectionUI_Simple.uxml 660 B

1234567891011121314
  1. <ui:UXML xmlns:ui="UnityEngine.UIElements">
  2. <ui:VisualElement name="ItemSelectionContainer">
  3. <ui:VisualElement name="ItemSelectionModal">
  4. <ui:Label name="TitleLabel" text="Select Item" />
  5. <ui:Label name="CharacterLabel" text="Character Name" />
  6. <ui:VisualElement name="ItemList" />
  7. <ui:VisualElement name="NoItemsContainer">
  8. <ui:Label text="No usable items available" />
  9. </ui:VisualElement>
  10. <ui:Button name="CancelButton" text="Cancel" />
  11. <ui:Button name="CloseButton" text="Close" />
  12. </ui:VisualElement>
  13. </ui:VisualElement>
  14. </ui:UXML>