limboai/bt/decorators/bt_always_succeed.cpp

11 lines
221 B
C++
Raw Normal View History

/* bt_always_succeed.cpp */
#include "bt_always_succeed.h"
int BTAlwaysSucceed::_tick(double p_delta) {
2022-09-21 10:37:19 +00:00
if (get_child_count() > 0 && get_child(0)->execute(p_delta) == RUNNING) {
return RUNNING;
}
return SUCCESS;
}