try/MainMenu.tscn
2023-10-31 19:24:10 -07:00

42 lines
1.1 KiB
Text

[gd_scene load_steps=2 format=2]
[ext_resource path="res://MainMenu.gd" type="Script" id=1]
[node name="MainMenu" type="CanvasLayer"]
script = ExtResource( 1 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_left = 320.0
margin_top = 320.0
margin_right = 704.0
margin_bottom = 600.0
[node name="NewGameButton" type="Button" parent="VBoxContainer"]
margin_right = 384.0
margin_bottom = 67.0
size_flags_vertical = 3
text = "New Game"
[node name="LoadGameButton" type="Button" parent="VBoxContainer"]
margin_top = 71.0
margin_right = 384.0
margin_bottom = 138.0
size_flags_vertical = 3
text = "Load Game"
[node name="OptionsButton" type="Button" parent="VBoxContainer"]
margin_top = 142.0
margin_right = 384.0
margin_bottom = 209.0
size_flags_vertical = 3
text = "Options"
[node name="QuitButton" type="Button" parent="VBoxContainer"]
margin_top = 213.0
margin_right = 384.0
margin_bottom = 280.0
size_flags_vertical = 3
text = "Quit"
[connection signal="pressed" from="VBoxContainer/NewGameButton" to="." method="_on_NewGameButton_pressed"]
[connection signal="pressed" from="VBoxContainer/QuitButton" to="." method="_on_QuitButton_pressed"]