limboai/bt/decorators/bt_always_succeed.cpp

20 lines
581 B
C++
Raw Normal View History

/**
* bt_always_succeed.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_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;
}