-
Notifications
You must be signed in to change notification settings - Fork 1
/
HUD.tscn
47 lines (39 loc) · 1.21 KB
/
HUD.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
43
44
45
46
47
[gd_scene load_steps=5 format=2]
[ext_resource path="res://HUD.gd" type="Script" id=1]
[ext_resource path="res://dodge_assets/fonts/Xolonium-Regular.ttf" type="DynamicFontData" id=2]
[sub_resource type="DynamicFont" id=1]
size = 64
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=2]
size = 64
font_data = ExtResource( 2 )
[node name="HUD" type="CanvasLayer"]
script = ExtResource( 1 )
[node name="ScoreLabel" type="Label" parent="."]
margin_left = 204.068
margin_top = 98.7618
margin_right = 249.068
margin_bottom = 257.762
custom_fonts/font = SubResource( 1 )
text = "0
"
[node name="MessageLabel" type="Label" parent="."]
margin_left = 17.0
margin_top = 259.0
margin_right = 453.0
margin_bottom = 418.0
custom_fonts/font = SubResource( 1 )
text = "Me quiero
morir"
align = 1
valign = 1
[node name="StartButton" type="Button" parent="."]
margin_left = 147.257
margin_top = 480.717
margin_right = 365.257
margin_bottom = 564.717
custom_fonts/font = SubResource( 2 )
text = "Start"
[node name="MessageTimer" type="Timer" parent="."]
[connection signal="pressed" from="StartButton" to="." method="_on_StartButton_pressed"]
[connection signal="timeout" from="MessageTimer" to="." method="_on_MessageTimer_timeout"]