| 12345678910111213141516171819 |
- <ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="False">
- <Style src="project://database/Assets/UI/GameUI.uss?fileID=7433441132597879392&guid=fa56cef70bca55749ab2f55f6a15854b&type=3#GameUI" />
- <ui:VisualElement name="RootContainer" style="flex-grow: 1; justify-content: flex-start; align-items: center;">
- <ui:VisualElement name="ScoreboardContainer" class="scoreboard-container">
- <ui:VisualElement name="HomeSection" class="team-section">
- <ui:Label text="Home Team" name="HomeTeamLabel" class="team-name" />
- <ui:Label text="0" name="HomeScoreLabel" class="score-label" />
- </ui:VisualElement>
- <ui:VisualElement name="TimerSection" class="timer-section">
- <ui:Label text="1" name="PeriodLabel" class="period-label" />
- <ui:Label text="20:00" name="TimerLabel" class="timer-label" />
- </ui:VisualElement>
- <ui:VisualElement name="AwaySection" class="team-section">
- <ui:Label text="0" name="AwayScoreLabel" class="score-label" />
- <ui:Label text="Away Team" name="AwayTeamLabel" class="team-name" />
- </ui:VisualElement>
- </ui:VisualElement>
- </ui:VisualElement>
- </ui:UXML>
|