2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_invert.cpp
|
|
|
|
* =============================================================================
|
2024-03-21 20:38:57 +00:00
|
|
|
* Copyright 2021-2024 Serhii Snitsaruk
|
2023-07-21 09:50:06 +00:00
|
|
|
*
|
|
|
|
* 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_invert.h"
|
|
|
|
|
2023-09-19 11:43:26 +00:00
|
|
|
BT::Status BTInvert::_tick(double p_delta) {
|
2022-09-21 10:37:19 +00:00
|
|
|
ERR_FAIL_COND_V_MSG(get_child_count() == 0, FAILURE, "BT decorator has no child.");
|
2023-09-19 11:43:26 +00:00
|
|
|
Status status = get_child(0)->execute(p_delta);
|
2022-08-28 11:56:43 +00:00
|
|
|
if (status == SUCCESS) {
|
|
|
|
status = FAILURE;
|
|
|
|
} else if (status == FAILURE) {
|
|
|
|
status = SUCCESS;
|
|
|
|
}
|
|
|
|
return status;
|
2024-01-13 16:10:42 +00:00
|
|
|
}
|