limboai/bt/composites/bt_dynamic_sequence.h

30 lines
761 B
C
Raw Normal View History

/**
* bt_dynamic_sequence.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.
* =============================================================================
*/
#ifndef BT_DYNAMIC_SEQUENCE_H
#define BT_DYNAMIC_SEQUENCE_H
2022-09-29 22:17:32 +00:00
#include "bt_composite.h"
2023-07-20 16:35:36 +00:00
#include "core/object/object.h"
class BTDynamicSequence : public BTComposite {
GDCLASS(BTDynamicSequence, BTComposite);
private:
int last_running_idx = 0;
protected:
virtual void _enter() override;
virtual int _tick(double p_delta) override;
};
#endif // BT_DYNAMIC_SEQUENCE_H