Files
BABA_YAGA/Assets/UI/Profile.uxml

29 lines
1.9 KiB
Plaintext
Raw Normal View History

2026-04-29 01:04:28 +07:00
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="False">
<Style src="project:/Assets/UI/Global.uss" />
2026-04-28 00:07:42 +07:00
<ui:VisualElement name="ProfileRoot" class="screen-root" style="flex-direction: row;">
2026-04-29 01:04:28 +07:00
<ui:VisualElement name="LeftPane" style="width: 60%; background-color: rgba(0, 0, 0, 0);" />
<ui:VisualElement name="RightPane" class="panel-glass--right">
2026-04-28 00:07:42 +07:00
<ui:VisualElement name="Header" style="flex-direction: row; align-items: center; margin-bottom: 30px;">
2026-04-29 01:04:28 +07:00
<ui:VisualElement name="Avatar" class="border-accent" style="width: 100px; height: 100px; border-radius: 50px; background-color: gray; margin-right: 20px; border-width: 3px;" />
2026-04-28 00:07:42 +07:00
<ui:VisualElement>
2026-04-29 01:04:28 +07:00
<ui:Label name="Username" text="Player One" class="text-heading" style="margin-bottom: 0;" />
<ui:Label name="Rank" text="MASTER III" class="text-subheading" style="font-size: 18px;" />
2026-04-28 00:07:42 +07:00
</ui:VisualElement>
</ui:VisualElement>
<ui:VisualElement name="Stats" style="margin-bottom: 30px;">
2026-04-29 01:04:28 +07:00
<ui:Label text="WIN RATE" class="text-label" />
<ui:ProgressBar name="WinRateBar" value="65" class="hud-bar" />
<ui:Label name="WinRateText" text="65%" class="text-body" style="align-self: flex-end; -unity-font-style: bold;" />
2026-04-28 00:07:42 +07:00
</ui:VisualElement>
2026-04-29 01:04:28 +07:00
<ui:ScrollView name="Inventory" class="scroll-list bg-surface-light radius-md" style="flex-grow: 1; padding: 10px;">
<ui:Label text="INVENTORY" class="text-label" style="margin-bottom: 10px;" />
2026-04-28 00:07:42 +07:00
<!-- Skin items will go here -->
</ui:ScrollView>
2026-04-29 01:04:28 +07:00
<ui:Button name="BackBtn" text="BACK" class="button-spring btn-exit" style="margin-top: 20px;" />
2026-04-28 00:07:42 +07:00
</ui:VisualElement>
</ui:VisualElement>
</ui:UXML>