JanGodotGame/scenes/badguy.tscn

76 lines
2.1 KiB
Plaintext

[gd_scene load_steps=9 format=3 uid="uid://bk0pk4m1ln716"]
[ext_resource type="Script" path="res://scripts/badguy.gd" id="1_oeik4"]
[ext_resource type="Texture2D" uid="uid://dqo6e8pa3jewf" path="res://assets/graphics/enemies/slime_purple.png" id="2_bfdny"]
[sub_resource type="AtlasTexture" id="AtlasTexture_r6wn1"]
atlas = ExtResource("2_bfdny")
region = Rect2(0, 24, 24, 24)
[sub_resource type="AtlasTexture" id="AtlasTexture_te1wg"]
atlas = ExtResource("2_bfdny")
region = Rect2(24, 24, 24, 24)
[sub_resource type="AtlasTexture" id="AtlasTexture_g742w"]
atlas = ExtResource("2_bfdny")
region = Rect2(48, 24, 24, 24)
[sub_resource type="AtlasTexture" id="AtlasTexture_6ebwa"]
atlas = ExtResource("2_bfdny")
region = Rect2(72, 24, 24, 24)
[sub_resource type="SpriteFrames" id="SpriteFrames_mb27d"]
animations = [{
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_r6wn1")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_te1wg")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_g742w")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_6ebwa")
}],
"loop": true,
"name": &"idle",
"speed": 12.0
}]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_blkie"]
size = Vector2(14, 15)
[node name="Area2D" type="Area2D" groups=["enemies"]]
scale = Vector2(2, 2)
script = ExtResource("1_oeik4")
metadata/_edit_group_ = true
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
texture_filter = 1
sprite_frames = SubResource("SpriteFrames_mb27d")
animation = &"idle"
autoplay = "idle"
frame_progress = 0.396641
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
position = Vector2(0, 4.5)
shape = SubResource("RectangleShape2D_blkie")
[node name="RightRay" type="RayCast2D" parent="."]
target_position = Vector2(13, 0)
[node name="LeftRay" type="RayCast2D" parent="."]
target_position = Vector2(-13, 0)
[node name="RightFloorRay" type="RayCast2D" parent="."]
position = Vector2(8, 3)
target_position = Vector2(0, 11)
[node name="LeftFloorRay" type="RayCast2D" parent="."]
position = Vector2(-8, 3)
target_position = Vector2(0, 11)
[connection signal="body_entered" from="." to="." method="_on_body_entered"]