2022-08-28 11:56:43 +00:00
|
|
|
/* bt_always_fail.cpp */
|
|
|
|
|
|
|
|
#include "bt_always_fail.h"
|
|
|
|
|
|
|
|
int BTAlwaysFail::_tick(float p_delta) {
|
2022-09-21 10:37:19 +00:00
|
|
|
if (get_child_count() > 0 && get_child(0)->execute(p_delta) == RUNNING) {
|
2022-08-28 11:56:43 +00:00
|
|
|
return RUNNING;
|
|
|
|
}
|
|
|
|
return FAILURE;
|
|
|
|
}
|