victory_menu.tscn 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [gd_scene load_steps=4 format=3 uid="uid://bmgwhm6ejsden"]
  2. [ext_resource type="Script" path="res://component/ui/victory/victory_menu.gd" id="1_2kg3i"]
  3. [sub_resource type="InputEventAction" id="InputEventAction_ucj0l"]
  4. action = &"ui_cancel"
  5. [sub_resource type="Shortcut" id="Shortcut_2elwo"]
  6. events = [SubResource("InputEventAction_ucj0l")]
  7. [node name="VictoryMenu" type="VSplitContainer"]
  8. process_mode = 3
  9. visible = false
  10. anchors_preset = 15
  11. anchor_right = 1.0
  12. anchor_bottom = 1.0
  13. grow_horizontal = 2
  14. grow_vertical = 2
  15. size_flags_horizontal = 4
  16. script = ExtResource("1_2kg3i")
  17. [node name="TextContainer" type="VBoxContainer" parent="."]
  18. layout_mode = 2
  19. [node name="Title" type="Label" parent="TextContainer"]
  20. layout_mode = 2
  21. theme_override_font_sizes/font_size = 40
  22. text = "Victory!"
  23. horizontal_alignment = 1
  24. [node name="BlaBla" type="Label" parent="TextContainer"]
  25. layout_mode = 2
  26. theme_override_font_sizes/font_size = 30
  27. text = "That's not a common way to go to space, but you are welcome !"
  28. horizontal_alignment = 1
  29. autowrap_mode = 2
  30. [node name="Buttons" type="VBoxContainer" parent="."]
  31. process_mode = 2
  32. layout_mode = 2
  33. size_flags_horizontal = 4
  34. size_flags_vertical = 4
  35. [node name="TitleButton" type="Button" parent="Buttons"]
  36. unique_name_in_owner = true
  37. layout_mode = 2
  38. theme_override_font_sizes/font_size = 33
  39. text = "Return to title screen"
  40. [node name="QuitButton" type="Button" parent="Buttons"]
  41. layout_mode = 2
  42. theme_override_font_sizes/font_size = 33
  43. shortcut = SubResource("Shortcut_2elwo")
  44. text = "Quit"
  45. [connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]
  46. [connection signal="pressed" from="Buttons/TitleButton" to="." method="_on_title_button_pressed"]
  47. [connection signal="pressed" from="Buttons/QuitButton" to="." method="_on_quit_button_pressed"]