|
12345678910111213141516171819202122 |
- [gd_scene load_steps=3 format=2]
-
- [ext_resource path="res://jrpg/fonts/puritan.tres" type="DynamicFont" id=1]
- [ext_resource path="res://jrpg/scripts/levels/game_over_scene.gd" type="Script" id=2]
-
- [node name="TestGameOver" type="Control"]
- anchor_right = 1.0
- anchor_bottom = 1.0
- script = ExtResource( 2 )
- __meta__ = {
- "_edit_use_anchors_": false
- }
-
- [node name="Button" type="Button" parent="."]
- anchor_right = 1.0
- anchor_bottom = 1.0
- custom_fonts/font = ExtResource( 1 )
- text = "Game Over"
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]
|