JanuaryGodotGame/januaryproject/scenes/badguy.tscn

74 lines
2.1 KiB
Plaintext
Raw Permalink Normal View History

[gd_scene load_steps=9 format=3 uid="uid://dc3up6wvi521j"]
[ext_resource type="Script" path="res://scripts/badguy.gd" id="1_xo5ex"]
[ext_resource type="Texture2D" uid="uid://qfv8gwt1icm3" path="res://assets/graphics/enemies/slime_green.png" id="2_j724m"]
[sub_resource type="AtlasTexture" id="AtlasTexture_vwjem"]
atlas = ExtResource("2_j724m")
region = Rect2(0, 24, 24, 24)
[sub_resource type="AtlasTexture" id="AtlasTexture_skbek"]
atlas = ExtResource("2_j724m")
region = Rect2(24, 24, 24, 24)
[sub_resource type="AtlasTexture" id="AtlasTexture_imgh0"]
atlas = ExtResource("2_j724m")
region = Rect2(48, 24, 24, 24)
[sub_resource type="AtlasTexture" id="AtlasTexture_0swbg"]
atlas = ExtResource("2_j724m")
region = Rect2(72, 24, 24, 24)
[sub_resource type="SpriteFrames" id="SpriteFrames_i30hk"]
animations = [{
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_vwjem")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_skbek")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_imgh0")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_0swbg")
}],
"loop": true,
"name": &"idle",
"speed": 12.0
}]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_r6k3p"]
size = Vector2(14, 14)
[node name="Area2D" type="Area2D" groups=["enemies"]]
script = ExtResource("1_xo5ex")
metadata/_edit_group_ = true
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
texture_filter = 1
sprite_frames = SubResource("SpriteFrames_i30hk")
animation = &"idle"
autoplay = "idle"
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
position = Vector2(0, 4)
shape = SubResource("RectangleShape2D_r6k3p")
[node name="RightRay" type="RayCast2D" parent="."]
target_position = Vector2(12, 0)
[node name="LeftRay" type="RayCast2D" parent="."]
target_position = Vector2(-12, 0)
[node name="RightFloorRay" type="RayCast2D" parent="."]
position = Vector2(8, 0)
target_position = Vector2(0, 14)
[node name="LeftFloorRay" type="RayCast2D" parent="."]
position = Vector2(-8, 0)
target_position = Vector2(0, 14)
[connection signal="body_entered" from="." to="." method="_on_body_entered"]