main_menu.tscn 961 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [gd_scene load_steps=2 format=3 uid="uid://bnug1ybm5mlyd"]
  2. [ext_resource type="Script" path="res://screens/main_menu.gd" id="1_6qk7l"]
  3. [node name="MainMenu" type="Control"]
  4. layout_mode = 3
  5. anchors_preset = 15
  6. anchor_right = 1.0
  7. anchor_bottom = 1.0
  8. grow_horizontal = 2
  9. grow_vertical = 2
  10. script = ExtResource("1_6qk7l")
  11. [node name="Title" type="Label" parent="."]
  12. layout_mode = 1
  13. anchors_preset = 5
  14. anchor_left = 0.5
  15. anchor_right = 0.5
  16. offset_left = -238.5
  17. offset_right = 238.5
  18. offset_bottom = 58.0
  19. grow_horizontal = 2
  20. theme_override_font_sizes/font_size = 42
  21. text = "Last Stand of Humanity"
  22. [node name="Button" type="Button" parent="."]
  23. layout_mode = 1
  24. anchors_preset = 8
  25. anchor_left = 0.5
  26. anchor_top = 0.5
  27. anchor_right = 0.5
  28. anchor_bottom = 0.5
  29. offset_left = -42.5
  30. offset_top = -19.0
  31. offset_right = 42.5
  32. offset_bottom = 19.0
  33. grow_horizontal = 2
  34. grow_vertical = 2
  35. text = "QUIT"
  36. [connection signal="pressed" from="Button" to="." method="_on_button_pressed"]