pause_screen.tscn 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. [gd_scene load_steps=4 format=3 uid="uid://di1fvicjwhp2a"]
  2. [ext_resource type="Script" uid="uid://ds40kewukeqgr" path="res://Scripts/pause.gd" id="1"]
  3. [ext_resource type="FontFile" uid="uid://3088fs7yhrwi" path="res://Misc/comic sans.ttf" id="2"]
  4. [sub_resource type="LabelSettings" id="LabelSettings_efjgu"]
  5. font = ExtResource("2")
  6. font_size = 32
  7. [node name="Pause Screen" type="CanvasLayer"]
  8. process_mode = 2
  9. visible = false
  10. script = ExtResource("1")
  11. [node name="Panel" type="Panel" parent="."]
  12. anchors_preset = 15
  13. anchor_right = 1.0
  14. anchor_bottom = 1.0
  15. grow_horizontal = 2
  16. grow_vertical = 2
  17. [node name="Label" type="Label" parent="Panel"]
  18. offset_left = 159.0
  19. offset_top = 22.0
  20. offset_right = 297.0
  21. offset_bottom = 100.0
  22. text = "pause"
  23. label_settings = SubResource("LabelSettings_efjgu")
  24. horizontal_alignment = 1
  25. vertical_alignment = 1
  26. [node name="resume" type="Button" parent="Panel"]
  27. offset_left = 152.0
  28. offset_top = 97.0
  29. offset_right = 305.0
  30. offset_bottom = 138.0
  31. theme_override_fonts/font = ExtResource("2")
  32. theme_override_font_sizes/font_size = 25
  33. text = "resume"
  34. [node name="reset" type="Button" parent="Panel"]
  35. offset_left = 152.0
  36. offset_top = 145.0
  37. offset_right = 305.0
  38. offset_bottom = 186.0
  39. theme_override_fonts/font = ExtResource("2")
  40. theme_override_font_sizes/font_size = 25
  41. text = "reset"
  42. [node name="exit_to_menu" type="Button" parent="Panel"]
  43. offset_left = 152.0
  44. offset_top = 191.0
  45. offset_right = 305.0
  46. offset_bottom = 232.0
  47. theme_override_fonts/font = ExtResource("2")
  48. theme_override_font_sizes/font_size = 25
  49. text = "exit to menu"
  50. [node name="exit" type="Button" parent="Panel"]
  51. offset_left = 152.0
  52. offset_top = 238.0
  53. offset_right = 305.0
  54. offset_bottom = 279.0
  55. theme_override_fonts/font = ExtResource("2")
  56. theme_override_font_sizes/font_size = 25
  57. text = "exit"
  58. [connection signal="pressed" from="Panel/resume" to="." method="_on_resume_pressed"]
  59. [connection signal="pressed" from="Panel/reset" to="." method="_on_reset_pressed"]
  60. [connection signal="pressed" from="Panel/exit_to_menu" to="." method="_on_exit_to_menu_pressed"]
  61. [connection signal="pressed" from="Panel/exit" to="." method="_on_exit_pressed"]