limboai/bt/actions/bt_wait.h

29 lines
504 B
C
Raw Normal View History

2022-08-29 12:06:48 +00:00
/* bt_wait.h */
#ifndef BT_WAIT_H
#define BT_WAIT_H
#include "bt_action.h"
#include "core/object/object.h"
2022-08-29 12:06:48 +00:00
class BTWait : public BTAction {
GDCLASS(BTWait, BTAction);
private:
double duration = 1.0;
2022-08-29 12:06:48 +00:00
protected:
static void _bind_methods();
virtual String _generate_name() const override;
virtual int _tick(double p_delta) override;
2022-08-29 12:06:48 +00:00
public:
void set_duration(double p_value) {
2022-08-29 12:06:48 +00:00
duration = p_value;
emit_changed();
}
double get_duration() const { return duration; }
2022-08-29 12:06:48 +00:00
};
#endif // BT_WAIT_H