cirnogodot/Scenes/HUD/debug_menu.tscn

62 lines
2.4 KiB
Text
Raw Normal View History

2025-03-09 17:14:06 +01:00
[gd_scene load_steps=6 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-03-09 17:14:06 +01:00
[ext_resource type="Texture2D" uid="uid://d1a0nwd4wdph7" path="res://Sprites/UI/Back_Small.png" id="5_1xl3a"]
2025-02-19 13:34:15 +01:00
2025-03-12 16:31:53 +01:00
[node name="DebugMenu" type="VBoxContainer" node_paths=PackedStringArray("ButtonsContainer", "CheatsContainer", "DefaultSelectedButton")]
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-03-12 16:31:53 +01:00
CheatsContainer = NodePath("HBoxContainer/ScrollContainer/CheatsContainer")
2025-03-12 15:47:57 +01:00
DefaultSelectedButton = NodePath("ScrollContainer/Level Select/BackButton")
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")
text = "Skip Dialogues"
[node name="God Mode" type="CheckBox" parent="HBoxContainer"]
layout_mode = 2
theme = ExtResource("2_wqb8e")
text = "God Mode
"
2025-03-12 16:31:53 +01:00
[node name="ScrollContainer" type="ScrollContainer" parent="HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
[node name="CheatsContainer" type="HBoxContainer" parent="HBoxContainer/ScrollContainer"]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
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")
text = "Back"
2025-03-09 17:14:06 +01:00
icon = ExtResource("5_1xl3a")
2025-02-19 13:34:15 +01:00
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"]