60 lines
1.7 KiB
Plaintext
60 lines
1.7 KiB
Plaintext
[gd_scene load_steps=9 format=3 uid="uid://col8ryohnxcnw"]
|
|
|
|
[ext_resource type="Script" path="res://Scripts/slime.gd" id="1_btp0b"]
|
|
[ext_resource type="Texture2D" uid="uid://b4dxowflr1r1s" path="res://Assets/graphics/enemies/slime_green.png" id="2_aa1qj"]
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_dgplm"]
|
|
atlas = ExtResource("2_aa1qj")
|
|
region = Rect2(0, 24, 24, 24)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_ufu1w"]
|
|
atlas = ExtResource("2_aa1qj")
|
|
region = Rect2(24, 24, 24, 24)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_r7fnm"]
|
|
atlas = ExtResource("2_aa1qj")
|
|
region = Rect2(48, 24, 24, 24)
|
|
|
|
[sub_resource type="AtlasTexture" id="AtlasTexture_10fi1"]
|
|
atlas = ExtResource("2_aa1qj")
|
|
region = Rect2(72, 24, 24, 24)
|
|
|
|
[sub_resource type="SpriteFrames" id="SpriteFrames_w4nm1"]
|
|
animations = [{
|
|
"frames": [{
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_dgplm")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_ufu1w")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_r7fnm")
|
|
}, {
|
|
"duration": 1.0,
|
|
"texture": SubResource("AtlasTexture_10fi1")
|
|
}],
|
|
"loop": true,
|
|
"name": &"idle",
|
|
"speed": 12.0
|
|
}]
|
|
|
|
[sub_resource type="RectangleShape2D" id="RectangleShape2D_khbh8"]
|
|
size = Vector2(12, 13)
|
|
|
|
[node name="Area2D" type="Area2D"]
|
|
script = ExtResource("1_btp0b")
|
|
|
|
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
|
texture_filter = 1
|
|
sprite_frames = SubResource("SpriteFrames_w4nm1")
|
|
animation = &"idle"
|
|
autoplay = "idle"
|
|
frame_progress = 0.192104
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
|
position = Vector2(0, 4.5)
|
|
shape = SubResource("RectangleShape2D_khbh8")
|
|
|
|
[connection signal="body_entered" from="." to="." method="_on_body_entered"]
|