2022-08-29 12:06:48 +00:00
|
|
|
/* bt_wait.cpp */
|
|
|
|
|
|
|
|
#include "bt_wait.h"
|
2023-04-10 05:54:02 +00:00
|
|
|
#include "core/math/math_funcs.h"
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/object/class_db.h"
|
|
|
|
#include "core/object/object.h"
|
|
|
|
#include "core/variant/variant.h"
|
2022-08-29 12:06:48 +00:00
|
|
|
|
|
|
|
String BTWait::_generate_name() const {
|
2023-04-10 05:54:02 +00:00
|
|
|
return vformat("Wait %s sec", Math::snapped(duration, 0.001));
|
2022-08-29 12:06:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BTWait::_enter() {
|
2022-12-17 10:26:48 +00:00
|
|
|
time_passed = 0.0;
|
2022-08-29 12:06:48 +00:00
|
|
|
}
|
|
|
|
|
2023-04-10 08:08:11 +00:00
|
|
|
int BTWait::_tick(double p_delta) {
|
2022-12-17 10:26:48 +00:00
|
|
|
time_passed += p_delta;
|
|
|
|
if (time_passed < duration) {
|
2022-08-29 12:06:48 +00:00
|
|
|
return RUNNING;
|
|
|
|
} else {
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BTWait::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("set_duration", "p_value"), &BTWait::set_duration);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_duration"), &BTWait::get_duration);
|
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "duration"), "set_duration", "get_duration");
|
2022-08-29 12:06:48 +00:00
|
|
|
}
|