| 1234567891011121314151617181920212223242526 |
- <ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="False">
- <Style src="project://database/Assets/UI/TeamSelectOverview/ShopUI.uss?fileID=7433441132597879392&guid=ce9335b2994aacd478121c1f2bc371e5&type=3#ShopUI" />
- <ui:VisualElement name="ShopContainer" style="position: absolute; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); justify-content: center; align-items: center; display: none;">
- <ui:VisualElement name="ShopWindow" style="width: 650px; height: 550px; min-width: 450px; min-height: 350px; background-color: rgb(240, 240, 240); border-left-color: rgb(100, 100, 100); border-right-color: rgb(100, 100, 100); border-top-color: rgb(100, 100, 100); border-bottom-color: rgb(100, 100, 100); border-left-width: 2px; border-right-width: 2px; border-top-width: 2px; border-bottom-width: 2px; border-top-left-radius: 10px; border-bottom-left-radius: 10px; border-top-right-radius: 10px; border-bottom-right-radius: 10px; padding-left: 20px; padding-right: 20px; padding-top: 20px; padding-bottom: 20px;">
- <ui:VisualElement name="ShopHeader" style="flex-direction: row; justify-content: space-between; align-items: center; margin-bottom: 15px; height: 40px;">
- <ui:Label name="ShopTitle" text="General Store" style="font-size: 24px; color: rgb(50, 50, 50); -unity-font-style: bold;" />
- <ui:VisualElement style="flex-direction: row; align-items: center;">
- <ui:Label text="Money: " style="color: rgb(50, 50, 50); margin-right: 5px;" />
- <ui:Label name="PlayerMoney" text="50g 0s 0c" style="color: rgb(0, 120, 0); -unity-font-style: bold; margin-right: 15px;" />
- <ui:Button name="CloseButton" text="✕" style="width: 30px; height: 30px; background-color: rgb(200, 50, 50); color: rgb(255, 255, 255); border-width: 0; border-top-left-radius: 15px; border-bottom-left-radius: 15px; border-top-right-radius: 15px; border-bottom-right-radius: 15px; font-size: 16px; -unity-font-style: bold;" />
- </ui:VisualElement>
- </ui:VisualElement>
- <ui:VisualElement name="ShopControls" style="flex-direction: column; margin-bottom: 15px; flex-shrink: 0;">
- <ui:VisualElement name="SearchRow" style="flex-direction: row; align-items: center; margin-bottom: 10px; height: 30px;">
- <ui:TextField name="SearchField" label="Search:" placeholder-text="Enter item name..." style="flex-grow: 1; max-width: none;" />
- </ui:VisualElement>
- <ui:VisualElement name="CategoryRow" style="flex-direction: row; align-items: center; height: 30px;">
- <ui:DropdownField name="CategoryFilter" label="Category:" style="width: 300px;" />
- </ui:VisualElement>
- </ui:VisualElement>
- <ui:ScrollView name="ItemList" style="flex-grow: 1; min-height: 200px; background-color: rgb(255, 255, 255); border-width: 1px; border-color: rgb(180, 180, 180); border-top-left-radius: 5px; border-bottom-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px;">
- <ui:Label text="Items will appear here when the shop is opened..." style="color: rgb(150, 150, 150); font-style: italic; -unity-text-align: middle-center; margin-top: 50px;" />
- </ui:ScrollView>
- </ui:VisualElement>
- </ui:VisualElement>
- </ui:UXML>
|