summaryrefslogtreecommitdiff
path: root/scenes/interface.tscn
blob: 8b37f8f69c9188bbbe9473398fa17c4a350101d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[gd_scene load_steps=2 format=2]

[ext_resource path="res://scripts/interface.gd" type="Script" id=3]

[node name="Interface" type="CanvasLayer"]
script = ExtResource( 3 )

[node name="ScoreLabel" type="Label" parent="."]
margin_top = -2.0
margin_right = 48.0
margin_bottom = 14.0
rect_scale = Vector2( 0.8, 0.8 )
text = "Score:"

[node name="TimerLabel" type="Label" parent="."]
margin_top = 11.0
margin_right = 56.0
margin_bottom = 27.0
rect_scale = Vector2( 0.8, 0.8 )
text = "Timer: "

[node name="Timer" type="Timer" parent="."]

[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]