InventorySheet.uxml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="False">
  2. <Style src="project://database/Assets/UI/TeamSelectOverview/InventorySheet.uss?fileID=7433441132597879392&amp;guid=0251fb0833df0ab408c78eac17467d97&amp;type=3#InventorySheet" />
  3. <ui:VisualElement name="InventorySheet" class="inventory-sheet-container" style="background-color: rgba(240, 240, 240, 0);">
  4. <ui:Label text="Inventory" class="title-label MainHeading" />
  5. <ui:VisualElement name="WeaponsSection" class="inventory-section">
  6. <ui:Label text="Weapons" class="section-header InventoryHeading" />
  7. <ui:VisualElement name="WeaponsList" class="item-list" />
  8. <ui:Button text="Add Weapon" name="AddWeaponButton" class="add-item-button" />
  9. </ui:VisualElement>
  10. <ui:VisualElement name="ArmourSection" class="inventory-section">
  11. <ui:Label text="Armour" class="section-header InventoryHeading" />
  12. <ui:VisualElement name="ArmourList" class="item-list" />
  13. <ui:Button text="Add Armour" name="AddArmourButton" class="add-item-button" />
  14. </ui:VisualElement>
  15. <ui:VisualElement name="MiscSection" class="inventory-section">
  16. <ui:Label text="Miscellaneous" class="section-header InventoryHeading" />
  17. <ui:VisualElement name="MiscList" class="item-list" />
  18. <ui:Button text="Add Misc Item" name="AddMiscButton" class="add-item-button" />
  19. </ui:VisualElement>
  20. <ui:VisualElement name="BankSection" class="bank-section">
  21. <ui:Label text="Bank" class="section-header InventoryHeading" />
  22. <ui:VisualElement name="GoldRow" class="bank-row">
  23. <ui:Label text="Gold" class="bank-label" />
  24. <ui:IntegerField name="GoldValue" value="0" class="bank-input" />
  25. </ui:VisualElement>
  26. <ui:VisualElement name="SilverRow" class="bank-row">
  27. <ui:Label text="Silver" class="bank-label" />
  28. <ui:IntegerField name="SilverValue" value="0" class="bank-input" />
  29. </ui:VisualElement>
  30. <ui:VisualElement name="CopperRow" class="bank-row">
  31. <ui:Label text="Copper" class="bank-label" />
  32. <ui:IntegerField name="CopperValue" value="0" class="bank-input" />
  33. </ui:VisualElement>
  34. </ui:VisualElement>
  35. </ui:VisualElement>
  36. </ui:UXML>