-
Notifications
You must be signed in to change notification settings - Fork 0
/
GUI.tscn
65 lines (54 loc) · 1.71 KB
/
GUI.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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://GUI/ScoreValue.gd" type="Script" id=1]
[ext_resource path="res://GUI/MissedValue.gd" type="Script" id=2]
[ext_resource path="res://GUI/GameStart.gd" type="Script" id=3]
[node name="Control" type="MarginContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 20.0
margin_top = 20.0
margin_right = 20.0
margin_bottom = 20.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_right = 1024.0
margin_bottom = 600.0
[node name="ScoreContainer" type="HBoxContainer" parent="VBoxContainer"]
margin_right = 1024.0
margin_bottom = 14.0
[node name="ScoreLabel" type="Label" parent="VBoxContainer/ScoreContainer"]
margin_right = 39.0
margin_bottom = 14.0
text = "Score:"
[node name="ScoreValue" type="Label" parent="VBoxContainer/ScoreContainer"]
margin_left = 43.0
margin_right = 51.0
margin_bottom = 14.0
text = "0"
script = ExtResource( 1 )
[node name="MissedContainer" type="HBoxContainer" parent="VBoxContainer"]
margin_top = 18.0
margin_right = 1024.0
margin_bottom = 32.0
[node name="MissedLabel" type="Label" parent="VBoxContainer/MissedContainer"]
margin_right = 50.0
margin_bottom = 14.0
text = "Missed:"
[node name="MissedValue" type="Label" parent="VBoxContainer/MissedContainer"]
margin_left = 54.0
margin_right = 62.0
margin_bottom = 14.0
text = "0"
script = ExtResource( 2 )
[node name="CenterContainer" type="CenterContainer" parent="VBoxContainer"]
margin_top = 36.0
margin_right = 1024.0
margin_bottom = 50.0
[node name="GameStart" type="Label" parent="VBoxContainer/CenterContainer"]
margin_left = 449.0
margin_right = 575.0
margin_bottom = 14.0
text = "Press space to start"
script = ExtResource( 3 )