-
Notifications
You must be signed in to change notification settings - Fork 0
/
Player.tscn
35 lines (29 loc) · 1.08 KB
/
Player.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
[gd_scene load_steps=8 format=2]
[ext_resource path="res://dodge_assets/art/playerGrey_walk2.png" type="Texture" id=1]
[ext_resource path="res://dodge_assets/art/playerGrey_up1.png" type="Texture" id=2]
[ext_resource path="res://dodge_assets/art/playerGrey_walk1.png" type="Texture" id=3]
[ext_resource path="res://dodge_assets/art/playerGrey_up2.png" type="Texture" id=4]
[ext_resource path="res://Player.gd" type="Script" id=5]
[sub_resource type="SpriteFrames" id=1]
animations = [ {
"frames": [ ExtResource( 2 ), ExtResource( 4 ) ],
"loop": true,
"name": "up",
"speed": 5.0
}, {
"frames": [ ExtResource( 3 ), ExtResource( 1 ) ],
"loop": true,
"name": "walk",
"speed": 5.0
} ]
[sub_resource type="CapsuleShape2D" id=2]
radius = 25.0
[node name="Player" type="Area2D"]
script = ExtResource( 5 )
[node name="AnimatedSprite" type="AnimatedSprite" parent="."]
scale = Vector2( 0.5, 0.5 )
frames = SubResource( 1 )
animation = "up"
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource( 2 )
[connection signal="body_entered" from="." to="." method="_on_Player_body_entered"]