mirror of
https://github.com/RYGhub/the-cold-night.git
synced 2024-11-22 04:34:19 +00:00
🔧 Make the basic enemy Damageable
This commit is contained in:
parent
a76fa2b246
commit
1c984e23c3
1 changed files with 4 additions and 1 deletions
|
@ -1,8 +1,9 @@
|
|||
[gd_scene load_steps=5 format=2]
|
||||
[gd_scene load_steps=6 format=2]
|
||||
|
||||
[ext_resource path="res://src/mechanics/Black.png" type="Texture" id=1]
|
||||
[ext_resource path="res://src/entities/behaviours/ErraticMovement.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://src/entities/behaviours/AttractedTo.tscn" type="PackedScene" id=3]
|
||||
[ext_resource path="res://src/entities/behaviours/Damageable.tscn" type="PackedScene" id=4]
|
||||
|
||||
[sub_resource type="RectangleShape2D" id=1]
|
||||
extents = Vector2( 16, 16 )
|
||||
|
@ -18,3 +19,5 @@ texture = ExtResource( 1 )
|
|||
[node name="AttractedTo" parent="." instance=ExtResource( 3 )]
|
||||
|
||||
[node name="ErraticMovement" parent="." instance=ExtResource( 2 )]
|
||||
|
||||
[node name="Damageable" parent="." instance=ExtResource( 4 )]
|
||||
|
|
Loading…
Reference in a new issue