-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDie.tscn
42 lines (36 loc) · 1.09 KB
/
Die.tscn
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
33
34
35
36
37
38
39
40
41
42
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Die.gd" type="Script" id=1]
[ext_resource path="res://m5x7.tres" type="DynamicFont" id=2]
[node name="Die" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="Panel" type="Panel" parent="."]
margin_left = 17.0
margin_top = 9.0
margin_right = 126.0
margin_bottom = 66.0
[node name="Label" type="Label" parent="Panel"]
margin_left = 10.8387
margin_top = 6.38528
margin_right = 99.8387
margin_bottom = 20.3853
custom_fonts/font = ExtResource( 2 )
text = "You Die"
align = 1
[node name="Retry" type="Button" parent="Panel"]
margin_left = 5.84441
margin_top = 26.7356
margin_right = 50.8444
margin_bottom = 46.7356
custom_fonts/font = ExtResource( 2 )
text = "Retry"
[node name="Menu" type="Button" parent="Panel"]
margin_left = 55.0715
margin_top = 26.5778
margin_right = 100.072
margin_bottom = 46.5778
custom_fonts/font = ExtResource( 2 )
text = "Menu"
[connection signal="pressed" from="Panel/Retry" to="." method="_on_Retry_pressed"]
[connection signal="pressed" from="Panel/Menu" to="." method="_on_Menu_pressed"]