| 123456789101112131415161718192021222324252627282930313233343536 |
- <ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="False">
- <Style src="project://database/Assets/UI/TeamSelectOverview/InventorySheet.uss?fileID=7433441132597879392&guid=0251fb0833df0ab408c78eac17467d97&type=3#InventorySheet" />
- <ui:VisualElement name="InventorySheet" class="inventory-sheet-container" style="background-color: rgba(240, 240, 240, 0);">
- <ui:Label text="Inventory" class="title-label MainHeading" />
- <ui:VisualElement name="WeaponsSection" class="inventory-section">
- <ui:Label text="Weapons" class="section-header InventoryHeading" />
- <ui:VisualElement name="WeaponsList" class="item-list" />
- <ui:Button text="Add Weapon" name="AddWeaponButton" class="add-item-button" />
- </ui:VisualElement>
- <ui:VisualElement name="ArmourSection" class="inventory-section">
- <ui:Label text="Armour" class="section-header InventoryHeading" />
- <ui:VisualElement name="ArmourList" class="item-list" />
- <ui:Button text="Add Armour" name="AddArmourButton" class="add-item-button" />
- </ui:VisualElement>
- <ui:VisualElement name="MiscSection" class="inventory-section">
- <ui:Label text="Miscellaneous" class="section-header InventoryHeading" />
- <ui:VisualElement name="MiscList" class="item-list" />
- <ui:Button text="Add Misc Item" name="AddMiscButton" class="add-item-button" />
- </ui:VisualElement>
- <ui:VisualElement name="BankSection" class="bank-section">
- <ui:Label text="Bank" class="section-header InventoryHeading" />
- <ui:VisualElement name="GoldRow" class="bank-row">
- <ui:Label text="Gold" class="bank-label" />
- <ui:IntegerField name="GoldValue" value="0" class="bank-input" />
- </ui:VisualElement>
- <ui:VisualElement name="SilverRow" class="bank-row">
- <ui:Label text="Silver" class="bank-label" />
- <ui:IntegerField name="SilverValue" value="0" class="bank-input" />
- </ui:VisualElement>
- <ui:VisualElement name="CopperRow" class="bank-row">
- <ui:Label text="Copper" class="bank-label" />
- <ui:IntegerField name="CopperValue" value="0" class="bank-input" />
- </ui:VisualElement>
- </ui:VisualElement>
- </ui:VisualElement>
- </ui:UXML>
|