2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
* =============================================================================
|
|
|
|
*/
|
2022-08-28 11:56:43 +00:00
|
|
|
|
|
|
|
#include "bt_always_fail.h"
|
|
|
|
|
2023-04-10 08:08:11 +00:00
|
|
|
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) {
|
2022-08-28 11:56:43 +00:00
|
|
|
return RUNNING;
|
|
|
|
}
|
|
|
|
return FAILURE;
|
|
|
|
}
|