-
Notifications
You must be signed in to change notification settings - Fork 1
/
HUD.tscn
63 lines (52 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[gd_scene load_steps=8 format=2]
[ext_resource path="res://HUD.cs" type="Script" id=1]
[sub_resource type="DynamicFontData" id=5]
font_path = "res://Assets/Linotte/Linotte Bold.otf"
[sub_resource type="DynamicFont" id=6]
size = 22
font_data = SubResource( 5 )
[sub_resource type="DynamicFontData" id=3]
font_path = "res://Assets/Linotte/Linotte Heavy.otf"
[sub_resource type="DynamicFont" id=4]
size = 30
font_data = SubResource( 3 )
[sub_resource type="DynamicFontData" id=1]
font_path = "res://Assets/Linotte/Linotte Semi Bold.otf"
[sub_resource type="DynamicFont" id=2]
size = 75
font_data = SubResource( 1 )
[node name="HUD" type="CanvasLayer"]
script = ExtResource( 1 )
[node name="Message" type="Label" parent="."]
margin_left = 357.0
margin_top = 164.0
margin_right = 666.0
margin_bottom = 244.0
custom_fonts/font = SubResource( 6 )
text = "Click start to begin"
align = 1
valign = 2
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Score" type="Label" parent="."]
anchor_right = 1.0
margin_bottom = 31.0
custom_fonts/font = SubResource( 4 )
text = "0 seconds"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="btnStart" type="Button" parent="."]
margin_left = 360.0
margin_top = 256.0
margin_right = 660.0
margin_bottom = 387.2
custom_fonts/font = SubResource( 2 )
text = "Start"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="btnStart" to="." method="_on_btnStart_pressed"]