blob: b05fb1733d7eb64d22f05ef96a12378a9067a179 (
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
25
26
27
|
[gd_scene load_steps=2 format=2]
[ext_resource path="res://scripts/interface.gd" type="Script" id=3]
[node name="Interface" type="Control"]
margin_right = 40.0
margin_bottom = 40.0
script = ExtResource( 3 )
[node name="ScoreLabel" type="Label" parent="."]
margin_right = 40.0
margin_bottom = 14.0
rect_scale = Vector2( 0.15, 0.15 )
[node name="TimerLabel" type="Label" parent="."]
margin_top = 2.0
margin_right = 40.0
margin_bottom = 16.0
rect_scale = Vector2( 0.15, 0.15 )
[node name="Timer" type="Timer" parent="TimerLabel"]
wait_time = 30.0
one_shot = true
[node name="Update Timer" type="Timer" parent="."]
[connection signal="timeout" from="Update Timer" to="." method="_on_Update_Timer_timeout"]
|