1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- [gd_scene load_steps=4 format=3 uid="uid://cjrl3cgbr8py5"]
- [ext_resource type="Script" uid="uid://d0nribcfyvv0r" path="res://Scripts/death_screen.gd" id="1"]
- [ext_resource type="FontFile" uid="uid://3088fs7yhrwi" path="res://Misc/comic sans.ttf" id="2"]
- [sub_resource type="LabelSettings" id="LabelSettings_0r3ax"]
- font = ExtResource("2")
- font_size = 32
- [node name="Death Screen" type="Panel"]
- process_mode = 2
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- script = ExtResource("1")
- [node name="respawn" type="Button" parent="."]
- layout_mode = 0
- offset_left = 124.0
- offset_top = 192.0
- offset_right = 304.0
- offset_bottom = 240.0
- theme_override_fonts/font = ExtResource("2")
- theme_override_font_sizes/font_size = 23
- text = "respawn"
- [node name="respawn2" type="Button" parent="."]
- layout_mode = 0
- offset_left = 123.0
- offset_top = 248.0
- offset_right = 303.0
- offset_bottom = 296.0
- theme_override_fonts/font = ExtResource("2")
- theme_override_font_sizes/font_size = 23
- text = "main menu"
- [node name="exit" type="Button" parent="."]
- layout_mode = 0
- offset_left = 124.0
- offset_top = 302.0
- offset_right = 304.0
- offset_bottom = 350.0
- theme_override_fonts/font = ExtResource("2")
- theme_override_font_sizes/font_size = 23
- text = "exit"
- [node name="title" type="Label" parent="."]
- layout_mode = 0
- offset_left = 81.0
- offset_top = 136.0
- offset_right = 353.0
- offset_bottom = 182.0
- text = "you die"
- label_settings = SubResource("LabelSettings_0r3ax")
- horizontal_alignment = 1
- vertical_alignment = 1
- [connection signal="pressed" from="respawn" to="." method="_on_respawn_pressed"]
- [connection signal="pressed" from="respawn2" to="." method="_on_respawn_2_pressed"]
- [connection signal="pressed" from="exit" to="." method="_on_exit_pressed"]
|