80 lines
2.4 KiB
Plaintext
80 lines
2.4 KiB
Plaintext
[gd_scene load_steps=2 format=3 uid="uid://dpe7by8lvno0h"]
|
|
|
|
[ext_resource type="Script" uid="uid://b2jhi1k8mktqm" path="res://scripts/options.gd" id="1_c2u1v"]
|
|
|
|
[node name="Options" type="Control"]
|
|
z_index = 1000
|
|
layout_mode = 3
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
script = ExtResource("1_c2u1v")
|
|
|
|
[node name="ColorRect" type="ColorRect" parent="."]
|
|
layout_mode = 1
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
color = Color(0, 0, 0, 0.5921569)
|
|
|
|
[node name="PanelContainer" type="PanelContainer" parent="."]
|
|
custom_minimum_size = Vector2(500, 500)
|
|
layout_mode = 1
|
|
anchors_preset = 8
|
|
anchor_left = 0.5
|
|
anchor_top = 0.5
|
|
anchor_right = 0.5
|
|
anchor_bottom = 0.5
|
|
offset_left = -250.0
|
|
offset_top = -250.0
|
|
offset_right = 250.0
|
|
offset_bottom = 250.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer"]
|
|
layout_mode = 2
|
|
|
|
[node name="Label" type="Label" parent="PanelContainer/VBoxContainer"]
|
|
layout_mode = 2
|
|
theme_override_font_sizes/font_size = 92
|
|
text = "Options"
|
|
horizontal_alignment = 1
|
|
|
|
[node name="Control" type="Control" parent="PanelContainer/VBoxContainer"]
|
|
custom_minimum_size = Vector2(0, 100)
|
|
layout_mode = 2
|
|
|
|
[node name="QuitButton" type="Button" parent="PanelContainer/VBoxContainer"]
|
|
custom_minimum_size = Vector2(0, 50)
|
|
layout_mode = 2
|
|
text = "Quit to Main Menu"
|
|
|
|
[node name="SuperquitButton" type="Button" parent="PanelContainer/VBoxContainer"]
|
|
custom_minimum_size = Vector2(0, 50)
|
|
layout_mode = 2
|
|
text = "Quit Game"
|
|
|
|
[node name="BackButton" type="Button" parent="PanelContainer/VBoxContainer"]
|
|
custom_minimum_size = Vector2(0, 50)
|
|
layout_mode = 2
|
|
text = "BACK"
|
|
|
|
[node name="ConfirmationDialog" type="ConfirmationDialog" parent="."]
|
|
oversampling_override = 1.0
|
|
title = "Confirm Quit"
|
|
initial_position = 2
|
|
size = Vector2i(256, 106)
|
|
ok_button_text = "QUIT"
|
|
dialog_text = "Are you sure you want to quit?
|
|
(Progress will be saved first)"
|
|
|
|
[connection signal="pressed" from="PanelContainer/VBoxContainer/QuitButton" to="." method="_on_quit_button_pressed"]
|
|
[connection signal="pressed" from="PanelContainer/VBoxContainer/SuperquitButton" to="." method="_on_superquit_button_pressed"]
|
|
[connection signal="pressed" from="PanelContainer/VBoxContainer/BackButton" to="." method="_on_back_button_pressed"]
|
|
[connection signal="confirmed" from="ConfirmationDialog" to="." method="_on_confirmation_dialog_confirmed"]
|