You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
611 B

  1. [gd_scene load_steps=3 format=2]
  2. [ext_resource path="res://jrpg/fonts/puritan.tres" type="DynamicFont" id=1]
  3. [ext_resource path="res://jrpg/scripts/levels/game_over_scene.gd" type="Script" id=2]
  4. [node name="TestGameOver" type="Control"]
  5. anchor_right = 1.0
  6. anchor_bottom = 1.0
  7. script = ExtResource( 2 )
  8. __meta__ = {
  9. "_edit_use_anchors_": false
  10. }
  11. [node name="Button" type="Button" parent="."]
  12. anchor_right = 1.0
  13. anchor_bottom = 1.0
  14. custom_fonts/font = ExtResource( 1 )
  15. text = "Game Over"
  16. __meta__ = {
  17. "_edit_use_anchors_": false
  18. }
  19. [connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]