func _on_puller_ready() -> void:
while true:
await get_tree().create_timer(3)
$"../place_area".add_child(food.instantiate())

this object when instanced creates hundreds of food instantly before crashing itself, why is it ignoring the await create timer?

  • xyz replied to this.

    await get_tree().create_timer(3).timeout() ?