74 lines
2.1 KiB
Plaintext
74 lines
2.1 KiB
Plaintext
|
[gd_scene load_steps=9 format=3 uid="uid://clitp4u6pd426"]
|
||
|
|
||
|
[ext_resource type="Script" path="res://scripts/badguy.gd" id="1_pb36v"]
|
||
|
[ext_resource type="Texture2D" uid="uid://ds7phwfwavsqj" path="res://assets/graphics/enemies/slime_green.png" id="2_5h7r7"]
|
||
|
|
||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_s1yph"]
|
||
|
atlas = ExtResource("2_5h7r7")
|
||
|
region = Rect2(0, 24, 24, 24)
|
||
|
|
||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_ft2a6"]
|
||
|
atlas = ExtResource("2_5h7r7")
|
||
|
region = Rect2(24, 24, 24, 24)
|
||
|
|
||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_gg3ce"]
|
||
|
atlas = ExtResource("2_5h7r7")
|
||
|
region = Rect2(48, 24, 24, 24)
|
||
|
|
||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_dlo6y"]
|
||
|
atlas = ExtResource("2_5h7r7")
|
||
|
region = Rect2(72, 24, 24, 24)
|
||
|
|
||
|
[sub_resource type="SpriteFrames" id="SpriteFrames_dgoyr"]
|
||
|
animations = [{
|
||
|
"frames": [{
|
||
|
"duration": 1.0,
|
||
|
"texture": SubResource("AtlasTexture_s1yph")
|
||
|
}, {
|
||
|
"duration": 1.0,
|
||
|
"texture": SubResource("AtlasTexture_ft2a6")
|
||
|
}, {
|
||
|
"duration": 1.0,
|
||
|
"texture": SubResource("AtlasTexture_gg3ce")
|
||
|
}, {
|
||
|
"duration": 1.0,
|
||
|
"texture": SubResource("AtlasTexture_dlo6y")
|
||
|
}],
|
||
|
"loop": true,
|
||
|
"name": &"idle",
|
||
|
"speed": 12.0
|
||
|
}]
|
||
|
|
||
|
[sub_resource type="RectangleShape2D" id="RectangleShape2D_i8bk0"]
|
||
|
size = Vector2(15, 18)
|
||
|
|
||
|
[node name="Area2D" type="Area2D" groups=["enemies"]]
|
||
|
script = ExtResource("1_pb36v")
|
||
|
metadata/_edit_group_ = true
|
||
|
|
||
|
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
||
|
texture_filter = 1
|
||
|
sprite_frames = SubResource("SpriteFrames_dgoyr")
|
||
|
animation = &"idle"
|
||
|
frame_progress = 0.764829
|
||
|
|
||
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||
|
position = Vector2(0, 2)
|
||
|
shape = SubResource("RectangleShape2D_i8bk0")
|
||
|
|
||
|
[node name="RightRay" type="RayCast2D" parent="."]
|
||
|
target_position = Vector2(14, 0)
|
||
|
|
||
|
[node name="LeftRay" type="RayCast2D" parent="."]
|
||
|
target_position = Vector2(-14, 0)
|
||
|
|
||
|
[node name="RightFloorRay" type="RayCast2D" parent="."]
|
||
|
position = Vector2(9, 0)
|
||
|
target_position = Vector2(0, 18)
|
||
|
|
||
|
[node name="LeftFloorRay" type="RayCast2D" parent="."]
|
||
|
position = Vector2(-9, 0)
|
||
|
target_position = Vector2(0, 18)
|
||
|
|
||
|
[connection signal="body_entered" from="." to="." method="_on_body_entered"]
|