mirror of
https://github.com/tonytins/citylimits
synced 2025-05-07 06:54:49 -04: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
|