51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
[gd_scene load_steps=8 format=3 uid="uid://clybje3qfbio0"]
|
|
|
|
[ext_resource type="Texture2D" uid="uid://twyr3m3mqj74" path="res://art/playerGrey_up1.png" id="1_hqtel"]
|
|
[ext_resource type="Script" uid="uid://uto2x8nu0r1u" path="res://scripts/player.gd" id="1_sweqy"]
|
|
[ext_resource type="Texture2D" uid="uid://vdvw5mdy2dsi" path="res://art/playerGrey_up2.png" id="2_sweqy"]
|
|
[ext_resource type="Texture2D" uid="uid://d30i17te0nve0" path="res://art/playerGrey_walk1.png" id="3_2hs0m"]
|
|
[ext_resource type="Texture2D" uid="uid://8rmp6koh2moy" path="res://art/playerGrey_walk2.png" id="4_1jxqw"]
|
|
|
|
[sub_resource type="SpriteFrames" id="SpriteFrames_dw050"]
|
|
animations = [{
|
|
"frames": [{
|
|
"duration": 1.0,
|
|
"texture": ExtResource("1_hqtel")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": ExtResource("2_sweqy")
|
|
}],
|
|
"loop": true,
|
|
"name": &"up",
|
|
"speed": 5.0
|
|
}, {
|
|
"frames": [{
|
|
"duration": 1.0,
|
|
"texture": ExtResource("3_2hs0m")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": ExtResource("4_1jxqw")
|
|
}],
|
|
"loop": true,
|
|
"name": &"walk",
|
|
"speed": 5.0
|
|
}]
|
|
|
|
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_b26j0"]
|
|
radius = 27.0
|
|
height = 68.0
|
|
|
|
[node name="Player" type="Area2D"]
|
|
script = ExtResource("1_sweqy")
|
|
metadata/_edit_group_ = true
|
|
|
|
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
|
scale = Vector2(0.5, 0.5)
|
|
sprite_frames = SubResource("SpriteFrames_dw050")
|
|
animation = &"up"
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
|
shape = SubResource("CapsuleShape2D_b26j0")
|
|
|
|
[connection signal="body_entered" from="." to="." method="_on_body_entered"]
|