title_screen.tscn 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [gd_scene load_steps=6 format=3 uid="uid://uy3pgfv4q3iy"]
  2. [ext_resource type="Script" path="res://component/ui/title/title_screen.gd" id="1_es6s3"]
  3. [sub_resource type="InputEventAction" id="InputEventAction_4kp4o"]
  4. action = &"ui_accept"
  5. [sub_resource type="Shortcut" id="Shortcut_2uvkc"]
  6. events = [SubResource("InputEventAction_4kp4o")]
  7. [sub_resource type="InputEventAction" id="InputEventAction_ucj0l"]
  8. action = &"ui_cancel"
  9. [sub_resource type="Shortcut" id="Shortcut_2elwo"]
  10. events = [SubResource("InputEventAction_ucj0l")]
  11. [node name="TitleScreen" type="VSplitContainer"]
  12. anchors_preset = 15
  13. anchor_right = 1.0
  14. anchor_bottom = 1.0
  15. grow_horizontal = 2
  16. grow_vertical = 2
  17. size_flags_horizontal = 4
  18. script = ExtResource("1_es6s3")
  19. [node name="Title" type="Label" parent="."]
  20. layout_mode = 2
  21. theme_override_font_sizes/font_size = 40
  22. text = "Crazy Driver
  23. get those chocolate bars!"
  24. horizontal_alignment = 1
  25. [node name="Buttons" type="VBoxContainer" parent="."]
  26. layout_mode = 2
  27. size_flags_horizontal = 4
  28. size_flags_vertical = 4
  29. [node name="StartButton" type="Button" parent="Buttons"]
  30. layout_mode = 2
  31. theme_override_font_sizes/font_size = 33
  32. shortcut = SubResource("Shortcut_2uvkc")
  33. text = "Start new game"
  34. [node name="QuitButton" type="Button" parent="Buttons"]
  35. layout_mode = 2
  36. theme_override_font_sizes/font_size = 33
  37. shortcut = SubResource("Shortcut_2elwo")
  38. text = "Quit"
  39. [connection signal="pressed" from="Buttons/StartButton" to="." method="_on_start_button_pressed"]
  40. [connection signal="pressed" from="Buttons/QuitButton" to="." method="_on_quit_button_pressed"]