1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-10-17 06:47:35 +00:00
hella-farm/behaviours/hunter.tscn

23 lines
889 B
Text

[gd_scene load_steps=3 format=3 uid="uid://ctpn4hvkhxoi3"]
[ext_resource type="Script" path="res://behaviours/hunter.gd" id="1_3bmd5"]
[sub_resource type="CircleShape2D" id="CircleShape2D_kxb8e"]
radius = 8.0
[node name="Hunter" type="Node2D"]
script = ExtResource("1_3bmd5")
[node name="DetectionArea" type="Area2D" parent="."]
collision_layer = 0
collision_mask = 24
monitorable = false
[node name="Shape" type="CollisionShape2D" parent="DetectionArea"]
shape = SubResource("CircleShape2D_kxb8e")
debug_color = Color(1, 0, 0, 0.0705882)
[connection signal="tracked" from="." to="." method="_on_tracked"]
[connection signal="untracked" from="." to="." method="_on_untracked"]
[connection signal="body_entered" from="DetectionArea" to="." method="_on_detection_area_body_entered"]
[connection signal="body_exited" from="DetectionArea" to="." method="_on_detection_area_body_exited"]