mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-24 17:14:23 +00:00
OH COME ON
This commit is contained in:
parent
630eb88f22
commit
a637dcfdf7
1 changed files with 6 additions and 4 deletions
|
@ -12,7 +12,9 @@ var possible_targets: Array = []
|
|||
|
||||
|
||||
func _on_detection_area_body_entered(body: Node2D) -> void:
|
||||
if body.find_children("Edible", "Edible", false, false):
|
||||
var edibles: Array = body.find_children("Edible", "Edible", false, false)
|
||||
for edible in edibles:
|
||||
if edible.tag == tag:
|
||||
Log.p(self, "Tracking a new target: %s" % body)
|
||||
possible_targets.push_back(body)
|
||||
tracked.emit(body)
|
||||
|
|
Loading…
Reference in a new issue