84 lines
2.3 KiB
Plaintext
84 lines
2.3 KiB
Plaintext
[gd_scene load_steps=3 format=3 uid="uid://brmo5qqqtj2mk"]
|
|
|
|
[ext_resource type="Script" path="res://Assets/scripts/Main Menu.gd" id="1_ju3pm"]
|
|
[ext_resource type="Theme" uid="uid://bm7gkjfqwmc3i" path="res://Assets/main_menu_theme.tres" id="1_pjxx2"]
|
|
|
|
[node name="Main Menu" type="Control"]
|
|
layout_mode = 3
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
theme = ExtResource("1_pjxx2")
|
|
script = ExtResource("1_ju3pm")
|
|
|
|
[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.0392157, 1)
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
|
layout_mode = 1
|
|
anchors_preset = 8
|
|
anchor_left = 0.5
|
|
anchor_top = 0.5
|
|
anchor_right = 0.5
|
|
anchor_bottom = 0.5
|
|
offset_left = -244.0
|
|
offset_top = -181.0
|
|
offset_right = 244.0
|
|
offset_bottom = 181.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
|
|
[node name="Label" type="Label" parent="VBoxContainer"]
|
|
self_modulate = Color(1, 0.0470588, 0.27451, 1)
|
|
layout_mode = 2
|
|
text = " Un-named
|
|
Horror game"
|
|
|
|
[node name="Start" type="Button" parent="VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "Start"
|
|
|
|
[node name="Load Level" type="Button" parent="VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "Load Level"
|
|
|
|
[node name="Settings" type="Button" parent="VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "Settings"
|
|
|
|
[node name="Exit" type="Button" parent="VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "Exit"
|
|
|
|
[node name="ItemList" type="ItemList" parent="."]
|
|
visible = false
|
|
layout_mode = 1
|
|
anchors_preset = 8
|
|
anchor_left = 0.5
|
|
anchor_top = 0.5
|
|
anchor_right = 0.5
|
|
anchor_bottom = 0.5
|
|
offset_left = -760.0
|
|
offset_top = -449.0
|
|
offset_right = 760.0
|
|
offset_bottom = 449.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
text_overrun_behavior = 0
|
|
item_count = 1
|
|
item_0/text = "Go Back"
|
|
|
|
[connection signal="pressed" from="VBoxContainer/Start" to="." method="_on_start_pressed"]
|
|
[connection signal="pressed" from="VBoxContainer/Load Level" to="." method="_on_load_level_pressed"]
|
|
[connection signal="pressed" from="VBoxContainer/Settings" to="." method="_on_settings_pressed"]
|
|
[connection signal="pressed" from="VBoxContainer/Exit" to="." method="_on_exit_pressed"]
|
|
[connection signal="item_clicked" from="ItemList" to="." method="_on_item_list_item_clicked"]
|