1bit-game-jam/prefabs/enemies/wretched.tscn

41 lines
1.6 KiB
Text

[gd_scene load_steps=6 format=3 uid="uid://bmyjqerhno5vi"]
[ext_resource type="SpriteFrames" uid="uid://blijqhtsnyq7n" path="res://sprites/enemies/wretched/wretched.tres" id="1_aqrsj"]
[ext_resource type="Script" path="res://scripts/enemies/Wretched.cs" id="1_ec388"]
[ext_resource type="PackedScene" uid="uid://cf0wpahgwygxx" path="res://prefabs/light_sense.tscn" id="2_16fib"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_svj4b"]
size = Vector2(24, 16)
[sub_resource type="CircleShape2D" id="CircleShape2D_nortt"]
radius = 15.0
[node name="Wretched" type="CharacterBody2D"]
collision_layer = 5
collision_mask = 5
script = ExtResource("1_ec388")
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
sprite_frames = ExtResource("1_aqrsj")
animation = &"NonActivatedUp"
frame_progress = 0.776966
[node name="Sprite2D" type="Sprite2D" parent="AnimatedSprite2D"]
[node name="LightSense" parent="." instance=ExtResource("2_16fib")]
[node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="LightSense"]
polygon = PackedVector2Array(-5, -16, -7, -3, -7, 9, -11, 14, -11, 16, 8, 16, 8, 8, 7, 4, 7, -16)
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
position = Vector2(1, 8)
shape = SubResource("RectangleShape2D_svj4b")
[node name="PlayerCollision" type="Area2D" parent="."]
[node name="CollisionShape2D" type="CollisionShape2D" parent="PlayerCollision"]
position = Vector2(1, 8)
shape = SubResource("CircleShape2D_nortt")
[connection signal="area_entered" from="LightSense" to="." method="_OnLightEntered"]
[connection signal="body_entered" from="PlayerCollision" to="." method="_OnPlayerCollision"]