diff options
author | Daniel Weipert <code@drogueronin.de> | 2021-02-10 23:53:06 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2021-02-10 23:53:06 +0100 |
commit | c62cf258a8ba1c8f40c69208a28a82c5afc71343 (patch) | |
tree | ec906ee025b59487d8ee3d8716dc8a59b68eea6d /UI/GameOver.tscn | |
parent | e216bf93e77ceb42c8c5dc5e77ebff6e1968faa3 (diff) |
Adds GameOver screen
Diffstat (limited to 'UI/GameOver.tscn')
-rw-r--r-- | UI/GameOver.tscn | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/UI/GameOver.tscn b/UI/GameOver.tscn new file mode 100644 index 0000000..67d985d --- /dev/null +++ b/UI/GameOver.tscn @@ -0,0 +1,45 @@ +[gd_scene load_steps=6 format=2] + +[ext_resource path="res://Assets/Fonts/impact-label/Impact_Label_Reversed.ttf" type="DynamicFontData" id=1] +[ext_resource path="res://Assets/Fonts/geometry-soft-pro/Geometry_Soft_Pro-Bold_N.otf" type="DynamicFontData" id=2] +[ext_resource path="res://UI/GameOver.gd" type="Script" id=3] + +[sub_resource type="DynamicFont" id=1] +size = 144 +font_data = ExtResource( 1 ) + +[sub_resource type="DynamicFont" id=2] +size = 36 +font_data = ExtResource( 2 ) + +[node name="GameOver" type="Panel"] +anchor_right = 1.0 +anchor_bottom = 1.0 +script = ExtResource( 3 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Title" type="Label" parent="."] +margin_left = 112.0 +margin_top = 56.0 +margin_right = 891.0 +margin_bottom = 200.0 +custom_fonts/font = SubResource( 1 ) +text = "GAME OVER" + +[node name="Winner" type="Label" parent="."] +margin_left = 400.0 +margin_top = 264.0 +margin_right = 585.0 +margin_bottom = 301.0 +custom_fonts/font = SubResource( 2 ) +text = "NAME won!" + +[node name="BackToLobby" type="Button" parent="."] +margin_left = 448.0 +margin_top = 464.0 +margin_right = 576.0 +margin_bottom = 496.0 +text = "Back to Lobby" +[connection signal="pressed" from="BackToLobby" to="." method="_on_BackToLobby_pressed"] |