28 lines
751 B
Plaintext
28 lines
751 B
Plaintext
[gd_scene load_steps=2 format=2]
|
|
|
|
[ext_resource path="res://main_menu.gd" type="Script" id=1]
|
|
|
|
[node name="Node2D" type="Node2D"]
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
|
margin_left = 73.0
|
|
margin_top = 437.0
|
|
margin_right = 161.0
|
|
margin_bottom = 502.0
|
|
rect_scale = Vector2( 2, 2 )
|
|
|
|
[node name="Start" type="Button" parent="VBoxContainer"]
|
|
margin_right = 88.0
|
|
margin_bottom = 20.0
|
|
text = "Play"
|
|
|
|
[node name="Exit" type="Button" parent="VBoxContainer"]
|
|
margin_top = 24.0
|
|
margin_right = 88.0
|
|
margin_bottom = 44.0
|
|
text = "Exit"
|
|
|
|
[connection signal="pressed" from="VBoxContainer/Start" to="." method="_on_Start_pressed"]
|
|
[connection signal="pressed" from="VBoxContainer/Exit" to="." method="_on_Exit_pressed"]
|