-
Notifications
You must be signed in to change notification settings - Fork 0
/
HUD.tscn
94 lines (80 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[gd_scene load_steps=7 format=2]
[ext_resource path="res://assets/fonts/Montserrat-SemiBold.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://HUD.gd" type="Script" id=2]
[sub_resource type="DynamicFont" id=7]
size = 17
extra_spacing_char = 2
font_data = ExtResource( 1 )
[sub_resource type="Theme" id=4]
default_font = SubResource( 7 )
[sub_resource type="DynamicFont" id=5]
size = 30
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=6]
size = 30
font_data = ExtResource( 1 )
[node name="HUD" type="Node2D"]
script = ExtResource( 2 )
[node name="SCORE" type="Node2D" parent="."]
[node name="YOURSCORE" type="Label" parent="SCORE"]
margin_left = -562.0
margin_top = -278.0
margin_right = -423.0
margin_bottom = -256.0
theme = SubResource( 4 )
custom_colors/font_color = Color( 0, 0, 0, 1 )
text = "SCORE:"
align = 2
__meta__ = {
"_edit_use_anchors_": false
}
[node name="score" type="Label" parent="SCORE"]
margin_left = -412.0
margin_top = -278.0
margin_right = -312.0
margin_bottom = -256.0
theme = SubResource( 4 )
custom_colors/font_color = Color( 0, 0, 0, 1 )
text = "100"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TIMER" type="Node2D" parent="."]
[node name="ZONESTARTSIN" type="Label" parent="TIMER"]
margin_left = 303.0
margin_top = -277.0
margin_right = 475.0
margin_bottom = -255.0
theme = SubResource( 4 )
custom_colors/font_color = Color( 0, 0, 0, 1 )
text = "ZONE STARTS IN"
align = 2
__meta__ = {
"_edit_use_anchors_": false
}
[node name="timer" type="Label" parent="TIMER"]
margin_left = 278.0
margin_top = -242.0
margin_right = 378.0
margin_bottom = -204.0
theme = SubResource( 4 )
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 5 )
text = "30"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="SECONDS" type="Label" parent="TIMER"]
margin_left = 328.0
margin_top = -242.0
margin_right = 482.0
margin_bottom = -204.0
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 6 )
text = "SECONDS"
align = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Camera2D" type="Camera2D" parent="."]
position = Vector2( 513, 302 )