46 lines
2.9 KiB
Plaintext
46 lines
2.9 KiB
Plaintext
<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:/Assets/UI/Styles/Global.uss" />
|
|
<ui:VisualElement class="screen-root" name="settings-root">
|
|
<ui:VisualElement class="panel" style="width: 800px; height: 600px;">
|
|
<ui:Label text="SETTINGS" name="title" class="header-text" />
|
|
|
|
<!-- TABS ROW -->
|
|
<ui:VisualElement class="tab-container">
|
|
<ui:Button text="GENERAL" name="tab-general" class="tab-button active-tab" />
|
|
<ui:Button text="GRAPHICS" name="tab-graphics" class="tab-button" />
|
|
<ui:Button text="AUDIO" name="tab-audio" class="tab-button" />
|
|
<ui:Button text="CONTROLS" name="tab-controls" class="tab-button" />
|
|
</ui:VisualElement>
|
|
|
|
<!-- CONTENT AREA -->
|
|
<ui:ScrollView class="tab-content">
|
|
<!-- Tab: General (Camera Settings) -->
|
|
<ui:VisualElement name="content-general">
|
|
<ui:Label text="Camera Settings" style="-unity-font-style: bold; margin-bottom: 10px;" />
|
|
<ui:Slider label="Field of View (FOV)" name="setting-fov" value="60" low-value="40" high-value="120" />
|
|
<ui:Slider label="Sensitivity" name="setting-sensitivity" value="5" low-value="0.1" high-value="20" />
|
|
<ui:Toggle label="Invert X" name="setting-invert-x" />
|
|
<ui:Toggle label="Invert Y" name="setting-invert-y" />
|
|
<ui:DropdownField label="Camera Side" name="setting-camera-side" index="0" choices="Right,Left" />
|
|
<ui:DropdownField label="Language" name="setting-language" index="0" choices="English,Tiếng Việt" />
|
|
</ui:VisualElement>
|
|
|
|
<!-- Tab: Graphics (Dummy) -->
|
|
<ui:VisualElement name="content-graphics" style="display: none;">
|
|
<ui:DropdownField label="Quality" index="2" choices="Low,Medium,High,Ultra" />
|
|
<ui:Toggle label="Fullscreen" value="true" />
|
|
<ui:Toggle label="V-Sync" value="true" />
|
|
</ui:VisualElement>
|
|
|
|
<!-- Tab: Audio (Dummy) -->
|
|
<ui:VisualElement name="content-audio" style="display: none;">
|
|
<ui:Slider label="Master Volume" value="80" low-value="0" high-value="100" />
|
|
<ui:Slider label="Music Volume" value="50" low-value="0" high-value="100" />
|
|
</ui:VisualElement>
|
|
</ui:ScrollView>
|
|
|
|
<ui:Button text="BACK" name="btn-back" class="button-primary" style="align-self: flex-end; margin-top: 20px;" />
|
|
</ui:VisualElement>
|
|
</ui:VisualElement>
|
|
</ui:UXML>
|