| 1234567891011121314151617181920 |
- <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">
- <Style src="project://database/Assets/UI/TitleScreen.uss?fileID=7433441132597879392&guid=c0b041ffbd3ead04d8c7719f5d19ddc5&type=3#TitleScreen" />
- <ui:VisualElement name="TitleScreen" class="title-screen-root">
- <ui:VisualElement name="Background" class="background" />
- <ui:VisualElement name="MainContent" class="main-content">
- <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>
- <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>
- <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>
|