| 12345678910111213141516171819202122232425262728 |
- <ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" xsi="http://www.w3.org/2001/XMLSchema-instance" engine="UnityEngine.UIElements" editor="UnityEditor.UIElements" noNamespaceSchemaLocation="../../UIElementsSchema/UIElements.xsd" editor-extension-mode="False">
-
- <ui:VisualElement name="TitleScreen" class="title-screen-root">
- <!-- Background -->
- <ui:VisualElement name="Background" class="background" />
-
- <!-- Main Content Container -->
- <ui:VisualElement name="MainContent" class="main-content">
- <!-- Title Section -->
- <ui:VisualElement name="TitleSection" class="title-section">
- <ui:Label text="RPG RougeLiteBattler" name="GameTitle" class="game-title" />
- <ui:Label text="Tactical Combat Adventure" name="GameSubtitle" class="game-subtitle" />
- </ui:VisualElement>
-
- <!-- Menu Section -->
- <ui:VisualElement name="MenuSection" class="menu-section">
- <ui:Button text="New Game" name="NewGameButton" class="menu-button new-game-button" />
- <ui:Button text="Load Game" name="LoadGameButton" class="menu-button load-game-button" />
- <ui:Button text="Quit" name="QuitButton" class="menu-button quit-button" />
- </ui:VisualElement>
-
- <!-- Version Info -->
- <ui:VisualElement name="VersionSection" class="version-section">
- <ui:Label text="Version 1.0.0 - Development Build" name="VersionLabel" class="version-label" />
- </ui:VisualElement>
- </ui:VisualElement>
- </ui:VisualElement>
- </ui:UXML>
|