Added Main Menu Button and connected it to the main menu script

This commit is contained in:
Willow Behar
2024-05-08 20:51:45 -05:00
parent 48c5b56acb
commit 3b2f22ddd6
2 changed files with 9 additions and 0 deletions

View File

@ -14,6 +14,7 @@ theme = ExtResource("1_pjxx2")
script = ExtResource("1_ju3pm")
[node name="VBoxContainer" type="VBoxContainer" parent="."]
visible = false
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
@ -36,6 +37,9 @@ text = " Un-named
layout_mode = 2
text = "Start"
[node name="Load Level" type="Button" parent="VBoxContainer"]
layout_mode = 2
[node name="Settings" type="Button" parent="VBoxContainer"]
layout_mode = 2
text = "Settings"
@ -45,5 +49,6 @@ layout_mode = 2
text = "Exit"
[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"]