-
Notifications
You must be signed in to change notification settings - Fork 0
/
Play.tscn
62 lines (46 loc) · 2.13 KB
/
Play.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
[gd_scene load_steps=10 format=2]
[ext_resource path="res://Systems/BlockSpawner.tscn" type="PackedScene" id=1]
[ext_resource path="res://Systems/GUI.tscn" type="PackedScene" id=2]
[ext_resource path="res://Systems/Audio.tscn" type="PackedScene" id=3]
[ext_resource path="res://Ground/StartArea.tscn" type="PackedScene" id=4]
[ext_resource path="res://Systems/FallPlane.gd" type="Script" id=5]
[ext_resource path="res://Ground/Ground_2_3.tscn" type="PackedScene" id=6]
[ext_resource path="res://Rat/Rat.tscn" type="PackedScene" id=7]
[ext_resource path="res://Ground/GoalArea.tscn" type="PackedScene" id=8]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 400, 10 )
[node name="Root" type="Node2D"]
[node name="Camera2D" type="Camera2D" parent="."]
position = Vector2( 304, 184 )
current = true
zoom = Vector2( 0.6, 0.6 )
[node name="Audio" parent="." instance=ExtResource( 3 )]
[node name="GUI" parent="." instance=ExtResource( 2 )]
margin_right = 500.0
margin_bottom = 300.0
[node name="BlockSpawner" parent="." instance=ExtResource( 1 )]
position = Vector2( 295.885, -24.5548 )
[node name="FallPlane" type="Area2D" parent="."]
position = Vector2( 323.207, 458.442 )
script = ExtResource( 5 )
__meta__ = {
"_edit_group_": true
}
[node name="CollisionShape2D" type="CollisionShape2D" parent="FallPlane"]
scale = Vector2( 2, 1 )
shape = SubResource( 1 )
[node name="Ground_2_3" parent="." instance=ExtResource( 6 )]
position = Vector2( 309.963, 287.313 )
[node name="Ground_2_5" parent="." instance=ExtResource( 6 )]
position = Vector2( 410.356, 287.313 )
[node name="Ground_2_4" parent="." instance=ExtResource( 6 )]
position = Vector2( 199.582, 286.814 )
[node name="GoalArea" parent="." instance=ExtResource( 8 )]
position = Vector2( 569.203, 238.241 )
[node name="Rat" parent="." instance=ExtResource( 7 )]
position = Vector2( 36.9252, 241.996 )
[node name="StartArea" parent="." instance=ExtResource( 4 )]
position = Vector2( 47.4492, 256.725 )
[node name="StartArea2" parent="." instance=ExtResource( 4 )]
position = Vector2( 593.864, 262.219 )
[connection signal="body_entered" from="FallPlane" to="FallPlane" method="_on_FallPlane_body_entered"]