-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFruit.tscn
46 lines (39 loc) · 1.21 KB
/
Fruit.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=8 format=2]
[ext_resource path="res://Fruit.gd" type="Script" id=1]
[ext_resource path="res://sprites/fruit/fruit01.png" type="Texture" id=2]
[ext_resource path="res://sprites/fruit/fruit02.png" type="Texture" id=3]
[ext_resource path="res://sprites/fruit/fruit04.png" type="Texture" id=4]
[ext_resource path="res://sprites/fruit/fruit03.png" type="Texture" id=5]
[sub_resource type="SpriteFrames" id=1]
animations = [ {
"frames": [ ExtResource( 2 ) ],
"loop": true,
"name": "apple",
"speed": 5.0
}, {
"frames": [ ExtResource( 3 ) ],
"loop": true,
"name": "banana",
"speed": 5.0
}, {
"frames": [ ExtResource( 4 ) ],
"loop": true,
"name": "carrot",
"speed": 5.0
}, {
"frames": [ ExtResource( 5 ) ],
"loop": true,
"name": "peach",
"speed": 5.0
} ]
[sub_resource type="RectangleShape2D" id=2]
extents = Vector2( 7.59079, 8.39631 )
[node name="Fruit" type="Area2D"]
position = Vector2( 153.812, 72.7364 )
script = ExtResource( 1 )
[node name="AnimatedSprite" type="AnimatedSprite" parent="."]
frames = SubResource( 1 )
animation = "apple"
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource( 2 )
[connection signal="body_entered" from="." to="." method="_on_Fruit_body_entered"]