cirnogodot/Scenes/HUD/debug_menu.tscn

52 lines
1.9 KiB
Text
Raw Normal View History

2025-02-21 21:37:24 +01:00
[gd_scene load_steps=5 format=3 uid="uid://bemu3l6b1e84y"]
2025-02-19 13:34:15 +01:00
2025-02-24 11:37:45 +01:00
[ext_resource type="Script" uid="uid://sqhb36u3acw7" path="res://Scripts/UI/DebugMenu.cs" id="1_5vtnj"]
2025-02-21 21:37:24 +01:00
[ext_resource type="Theme" uid="uid://dkom8gcup42kd" path="res://Resources/Styles/DebugMenuButtons.tres" id="2_6il8q"]
2025-02-19 13:34:15 +01:00
[ext_resource type="Theme" uid="uid://dnsadvmunm76k" path="res://Resources/Styles/MainMenuButtons.tres" id="2_wqb8e"]
2025-02-21 11:39:22 +01:00
[ext_resource type="Resource" uid="uid://d1lc8lhq1b05p" path="res://Resources/Debug/DebugLevels.tres" id="3_cvgqx"]
2025-02-19 13:34:15 +01:00
[node name="DebugMenu" type="VBoxContainer" node_paths=PackedStringArray("ButtonsContainer")]
2025-02-24 10:37:27 +01:00
process_mode = 3
2025-02-19 13:34:15 +01:00
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_5vtnj")
2025-02-21 21:37:24 +01:00
ButtonTheme = ExtResource("2_6il8q")
2025-02-21 11:39:22 +01:00
Levels = ExtResource("3_cvgqx")
ButtonsContainer = NodePath("ScrollContainer/Level Select")
2025-02-19 13:34:15 +01:00
[node name="HBoxContainer" type="HBoxContainer" parent="."]
layout_mode = 2
[node name="CheckBox" type="CheckBox" parent="HBoxContainer"]
layout_mode = 2
theme = ExtResource("2_wqb8e")
theme_override_font_sizes/font_size = 14
text = "Skip Dialogues"
[node name="God Mode" type="CheckBox" parent="HBoxContainer"]
layout_mode = 2
theme = ExtResource("2_wqb8e")
theme_override_font_sizes/font_size = 14
text = "God Mode
"
2025-02-21 11:39:22 +01:00
[node name="ScrollContainer" type="ScrollContainer" parent="."]
2025-02-19 13:34:15 +01:00
layout_mode = 2
2025-02-21 11:39:22 +01:00
size_flags_vertical = 3
2025-02-19 13:34:15 +01:00
2025-02-21 11:39:22 +01:00
[node name="Level Select" type="FlowContainer" parent="ScrollContainer"]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="BackButton" type="Button" parent="ScrollContainer/Level Select"]
2025-02-19 13:34:15 +01:00
layout_mode = 2
theme = ExtResource("2_wqb8e")
2025-02-21 21:37:24 +01:00
theme_override_font_sizes/font_size = 10
2025-02-19 13:34:15 +01:00
text = "Back"
2025-02-27 08:37:55 +01:00
[connection signal="toggled" from="HBoxContainer/CheckBox" to="." method="_on_check_box_toggled"]
2025-02-21 11:39:22 +01:00
[connection signal="pressed" from="ScrollContainer/Level Select/BackButton" to="." method="_on_back_button_pressed"]