limboai/bt/tasks/decorators/bt_delay.h

35 lines
827 B
C
Raw Normal View History

/**
* bt_delay.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-28 13:24:01 +00:00
#ifndef BT_DELAY_H
#define BT_DELAY_H
2023-08-15 15:49:13 +00:00
#include "../bt_decorator.h"
class BTDelay : public BTDecorator {
GDCLASS(BTDelay, BTDecorator);
TASK_CATEGORY(Decorators);
private:
double seconds = 1.0;
protected:
static void _bind_methods();
virtual String _generate_name() override;
virtual Status _tick(double p_delta) override;
public:
void set_seconds(double p_value);
double get_seconds() const { return seconds; }
};
2022-08-28 13:24:01 +00:00
#endif // BT_DELAY_H