limboai/bt/decorators/bt_always_fail.cpp

20 lines
572 B
C++
Raw Normal View History

/**
* bt_always_fail.cpp
* =============================================================================
* Copyright 2021-2023 Serhii Snitsaruk
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
* =============================================================================
*/
#include "bt_always_fail.h"
int BTAlwaysFail::_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 FAILURE;
}