2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_wait.h
|
|
|
|
* =============================================================================
|
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-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);
|
2023-08-28 11:22:23 +00:00
|
|
|
TASK_CATEGORY(Utility);
|
2022-08-29 12:06:48 +00:00
|
|
|
|
|
|
|
private:
|
2023-04-10 08:08:11 +00:00
|
|
|
double duration = 1.0;
|
2022-08-29 12:06:48 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2024-01-06 23:47:46 +00:00
|
|
|
virtual String _generate_name() override;
|
2023-09-19 11:43:26 +00:00
|
|
|
virtual Status _tick(double p_delta) override;
|
2022-08-29 12:06:48 +00:00
|
|
|
|
|
|
|
public:
|
2023-04-10 08:08:11 +00:00
|
|
|
void set_duration(double p_value) {
|
2022-08-29 12:06:48 +00:00
|
|
|
duration = p_value;
|
|
|
|
emit_changed();
|
|
|
|
}
|
2023-04-10 08:08:11 +00:00
|
|
|
double get_duration() const { return duration; }
|
2022-08-29 12:06:48 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 16:10:42 +00:00
|
|
|
#endif // BT_WAIT_H
|