TitleScreen.uxml 1.6 KB

1234567891011121314151617181920
  1. <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">
  2. <Style src="project://database/Assets/UI/TitleScreen.uss?fileID=7433441132597879392&amp;guid=c0b041ffbd3ead04d8c7719f5d19ddc5&amp;type=3#TitleScreen" />
  3. <ui:VisualElement name="TitleScreen" class="title-screen-root">
  4. <ui:VisualElement name="Background" class="background" />
  5. <ui:VisualElement name="MainContent" class="main-content">
  6. <ui:VisualElement name="TitleSection" class="title-section">
  7. <ui:Label text="RPG RougeLiteBattler" name="GameTitle" class="game-title" />
  8. <ui:Label text="Tactical Combat Adventure" name="GameSubtitle" class="game-subtitle" />
  9. </ui:VisualElement>
  10. <ui:VisualElement name="MenuSection" class="menu-section">
  11. <ui:Button text="New Game" name="NewGameButton" class="menu-button new-game-button" />
  12. <ui:Button text="Load Game" name="LoadGameButton" class="menu-button load-game-button" />
  13. <ui:Button text="Quit" name="QuitButton" class="menu-button quit-button" />
  14. </ui:VisualElement>
  15. <ui:VisualElement name="VersionSection" class="version-section">
  16. <ui:Label text="Version 1.0.0 - Development Build" name="VersionLabel" class="version-label" />
  17. </ui:VisualElement>
  18. </ui:VisualElement>
  19. </ui:VisualElement>
  20. </ui:UXML>