-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipe.tscn
38 lines (29 loc) · 1.17 KB
/
pipe.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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://pipe.gd" type="Script" id=1]
[ext_resource path="res://icon.png" type="Texture" id=2]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 27.7778, 312 )
[node name="pipe" type="Area2D" groups=["pipe_group"]]
modulate = Color( 0.278431, 0.858824, 0.156863, 1 )
position = Vector2( 977, 288 )
scale = Vector2( 1.2, 1 )
script = ExtResource( 1 )
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 0, 420 )
scale = Vector2( 1.2, 10 )
texture = ExtResource( 2 )
[node name="Sprite2" type="Sprite" parent="."]
position = Vector2( 0, -400 )
scale = Vector2( 1.2, 10 )
texture = ExtResource( 2 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
position = Vector2( 0, -400 )
scale = Vector2( 1.2, 1 )
shape = SubResource( 1 )
[node name="CollisionShape2D2" type="CollisionShape2D" parent="."]
position = Vector2( 0, 420 )
scale = Vector2( 1.2, 1 )
shape = SubResource( 1 )
[node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
scale = Vector2( 1.2, 1 )
[connection signal="screen_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_screen_exited"]