mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-24 07:49:06 +00:00
11 lines
237 B
GDScript
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
|