citylimits/addons/beehave/nodes/decorators/failer.gd
2023-01-21 04:04:13 -05:00

11 lines
237 B
GDScript

extends Decorator
class_name AlwaysFailDecorator, "../../icons/fail.svg"
func tick(action, blackboard):
for c in get_children():
var response = c.tick(action, blackboard)
if response == RUNNING:
return RUNNING
return FAILURE