limboai/bt/tasks/actions/bt_wait.h

38 lines
860 B
C
Raw Normal View History

/**
* bt_wait.h
* =============================================================================
* 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-29 12:06:48 +00:00
#ifndef BT_WAIT_H
#define BT_WAIT_H
2023-08-15 15:49:13 +00:00
#include "../bt_action.h"
2022-08-29 12:06:48 +00:00
class BTWait : public BTAction {
GDCLASS(BTWait, BTAction);
TASK_CATEGORY(Actions);
2022-08-29 12:06:48 +00:00
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