32 lines
1.9 KiB
Plaintext
32 lines
1.9 KiB
Plaintext
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../UIElementsSchema/UIElements.xsd">
|
|
<Style src="project:/Assets/UI/Styles/Global.uss" />
|
|
<ui:VisualElement class="modal-backdrop" name="settings-overlay">
|
|
<ui:VisualElement class="modal-panel">
|
|
<ui:VisualElement style="flex-direction: row; justify-content: space-between; align-items: center; margin-bottom: 20px;">
|
|
<ui:Label text="SETTINGS" class="header-text" style="font-size: 32px; margin-bottom: 0;" />
|
|
<ui:Button name="btn-close" class="slanted-button" focusable="true">
|
|
<ui:VisualElement class="slanted-button-inner">
|
|
<ui:Label text="X" />
|
|
</ui:VisualElement>
|
|
</ui:Button>
|
|
</ui:VisualElement>
|
|
|
|
<!-- TABS -->
|
|
<ui:VisualElement style="flex-direction: row; margin-bottom: 20px;">
|
|
<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 -->
|
|
<ui:ScrollView style="flex-grow: 1;">
|
|
<ui:VisualElement name="content-general">
|
|
<ui:Slider label="Field of View" name="setting-fov" value="60" low-value="40" high-value="120" />
|
|
<ui:Slider label="Mouse Sensitivity" name="setting-sensitivity" value="5" low-value="0.1" high-value="20" />
|
|
</ui:VisualElement>
|
|
</ui:ScrollView>
|
|
</ui:VisualElement>
|
|
</ui:VisualElement>
|
|
</ui:UXML>
|