You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.1 KiB
107 lines
3.1 KiB
[gd_scene load_steps=10 format=2]
|
|
|
|
[ext_resource path="res://resources/ui/theme.tres" type="Theme" id=1]
|
|
[ext_resource path="res://scripts/menus/settings_menu.gd" type="Script" id=2]
|
|
[ext_resource path="res://scenes/menus/BaseMenu.tscn" type="PackedScene" id=3]
|
|
[ext_resource path="res://scenes/menus/SettingsGameMenu.tscn" type="PackedScene" id=4]
|
|
[ext_resource path="res://scenes/menus/SettingsControlsMenu.tscn" type="PackedScene" id=5]
|
|
[ext_resource path="res://scenes/menus/SettingsGraphicsMenu.tscn" type="PackedScene" id=6]
|
|
[ext_resource path="res://scenes/menus/SettingsSystemMenu.tscn" type="PackedScene" id=7]
|
|
[ext_resource path="res://assets/icons/checkmark.png" type="Texture" id=8]
|
|
[ext_resource path="res://assets/icons/save.png" type="Texture" id=9]
|
|
|
|
[node name="settings_menu" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
margin_left = 1.45612
|
|
margin_top = 1.45612
|
|
margin_right = 1.45605
|
|
margin_bottom = 1.45612
|
|
theme = ExtResource( 1 )
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="menu" parent="." instance=ExtResource( 3 )]
|
|
|
|
[node name="back" parent="menu" index="0"]
|
|
focus_neighbour_top = NodePath("../tabs/game")
|
|
focus_neighbour_right = NodePath("../HBoxContainer/apply")
|
|
|
|
[node name="tabs" type="TabContainer" parent="menu"]
|
|
anchor_left = 0.5
|
|
anchor_top = 0.5
|
|
anchor_right = 0.5
|
|
anchor_bottom = 0.5
|
|
margin_left = -464.5
|
|
margin_top = -223.5
|
|
margin_right = 459.5
|
|
margin_bottom = 177.5
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
focus_mode = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
tab_align = 0
|
|
|
|
[node name="game" parent="menu/tabs" instance=ExtResource( 4 )]
|
|
|
|
[node name="controls" parent="menu/tabs" instance=ExtResource( 5 )]
|
|
visible = false
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
margin_left = 4.0
|
|
margin_top = 45.0
|
|
margin_right = -4.0
|
|
margin_bottom = -4.0
|
|
|
|
[node name="graphics" parent="menu/tabs" instance=ExtResource( 6 )]
|
|
visible = false
|
|
|
|
[node name="system" parent="menu/tabs" instance=ExtResource( 7 )]
|
|
visible = false
|
|
|
|
[node name="HBoxContainer" type="HBoxContainer" parent="menu"]
|
|
anchor_left = 1.0
|
|
anchor_top = 1.0
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
margin_left = -286.0
|
|
margin_top = -56.0
|
|
grow_horizontal = 0
|
|
grow_vertical = 0
|
|
size_flags_horizontal = 8
|
|
size_flags_vertical = 8
|
|
alignment = 2
|
|
|
|
[node name="apply" type="Button" parent="menu/HBoxContainer"]
|
|
margin_right = 150.0
|
|
margin_bottom = 56.0
|
|
grow_horizontal = 0
|
|
grow_vertical = 0
|
|
focus_neighbour_left = NodePath("../../back")
|
|
focus_neighbour_top = NodePath("../../tabs/game")
|
|
focus_neighbour_right = NodePath("../save")
|
|
size_flags_horizontal = 10
|
|
size_flags_vertical = 10
|
|
text = "APPLY"
|
|
icon = ExtResource( 8 )
|
|
flat = true
|
|
align = 0
|
|
|
|
[node name="save" type="Button" parent="menu/HBoxContainer"]
|
|
margin_left = 154.0
|
|
margin_right = 286.0
|
|
margin_bottom = 56.0
|
|
grow_horizontal = 0
|
|
grow_vertical = 0
|
|
focus_neighbour_left = NodePath("../apply")
|
|
focus_neighbour_top = NodePath("../../tabs/game")
|
|
size_flags_horizontal = 10
|
|
size_flags_vertical = 10
|
|
text = "SAVE"
|
|
icon = ExtResource( 9 )
|
|
flat = true
|
|
align = 0
|
|
[connection signal="pressed" from="menu/HBoxContainer/apply" to="." method="_on_apply_pressed"]
|
|
[connection signal="pressed" from="menu/HBoxContainer/save" to="." method="_on_save_pressed"]
|
|
|
|
[editable path="menu"]
|