-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame_over.tscn
More file actions
32 lines (23 loc) · 1.07 KB
/
game_over.tscn
File metadata and controls
32 lines (23 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[gd_scene load_steps=2 format=3 uid="uid://cakyv2crg721c"]
[ext_resource type="Script" path="res://game_over.gd" id="1_l1x0s"]
[node name="GameOver" type="Node"]
script = ExtResource("1_l1x0s")
[node name="MarginContainer" type="MarginContainer" parent="."]
offset_right = 1151.0
offset_bottom = 643.0
[node name="ColorRect" type="ColorRect" parent="MarginContainer"]
layout_mode = 2
color = Color(0.549458, 0.077376, 0.203367, 1)
[node name="CenterContainer" type="CenterContainer" parent="MarginContainer"]
layout_mode = 2
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/CenterContainer"]
layout_mode = 2
[node name="Label" type="Label" parent="MarginContainer/CenterContainer/VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 64
text = "Game Over"
[node name="Button" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer"]
custom_minimum_size = Vector2(50, 50)
layout_mode = 2
text = "To Main Menu"
[connection signal="pressed" from="MarginContainer/CenterContainer/VBoxContainer/Button" to="." method="_on_button_pressed"]