1234567891011121314151617181920212223242526272829303132333435363738394041 |
- [gd_scene load_steps=2 format=3 uid="uid://bnug1ybm5mlyd"]
- [ext_resource type="Script" path="res://screens/main_menu.gd" id="1_6qk7l"]
- [node name="MainMenu" type="Control"]
- layout_mode = 3
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- script = ExtResource("1_6qk7l")
- [node name="Title" type="Label" parent="."]
- layout_mode = 1
- anchors_preset = 5
- anchor_left = 0.5
- anchor_right = 0.5
- offset_left = -238.5
- offset_right = 238.5
- offset_bottom = 58.0
- grow_horizontal = 2
- theme_override_font_sizes/font_size = 42
- text = "Last Stand of Humanity"
- [node name="Button" type="Button" 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 = -42.5
- offset_top = -19.0
- offset_right = 42.5
- offset_bottom = 19.0
- grow_horizontal = 2
- grow_vertical = 2
- text = "QUIT"
- [connection signal="pressed" from="Button" to="." method="_on_button_pressed"]
|