-
Notifications
You must be signed in to change notification settings - Fork 1
/
Main.tscn
48 lines (31 loc) · 1.08 KB
/
Main.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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://Main.gd" type="Script" id=1]
[ext_resource path="res://HUD.tscn" type="PackedScene" id=2]
[sub_resource type="Curve2D" id=1]
bake_interval = 5.0
_data = {
"points": PoolVector2Array( )
}
[node name="Main" type="Node2D" index="0"]
script = ExtResource( 1 )
[node name="StartPosition" type="Position2D" parent="." index="0"]
[node name="BoulderPath" type="Path2D" parent="." index="1"]
editor/display_folded = true
self_modulate = Color( 0.5, 0.6, 1, 0.7 )
curve = SubResource( 1 )
[node name="BoulderSpawnLocation" type="PathFollow2D" parent="BoulderPath" index="0"]
offset = 0.0
h_offset = 0.0
v_offset = 0.0
rotate = true
cubic_interp = true
loop = true
lookahead = 4.0
[node name="BoulderTimer" type="Timer" parent="." index="2"]
process_mode = 1
wait_time = 0.75
one_shot = false
autostart = false
[node name="HUD" parent="." index="3" instance=ExtResource( 2 )]
[connection signal="timeout" from="BoulderTimer" to="." method="_on_BoulderTimer_timeout"]
[connection signal="start_game" from="HUD" to="." method="new_game"]