bovido/scripts/enemy/behavior_tree/get_ball_destination_action.gd

7 lines
176 B
GDScript3
Raw Normal View History

class_name GetBallDestinationAction
extends ActionLeaf
func tick(actor: Node, blackboard: Blackboard):
blackboard.set_value("destination", actor.next_target)
return SUCCESS