2021-12-05 17:54:36 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
#include "Behavior.h"
|
|
|
|
|
|
|
|
|
|
class DurationBehavior final : public Behavior
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
float m_duration;
|
|
|
|
|
|
|
|
|
|
Behavior* m_action;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
|
explicit DurationBehavior(const uint32_t behavior_id) : Behavior(behavior_id) {
|
|
|
|
|
}
|
2022-07-28 13:39:57 +00:00
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
|
void Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
|
|
|
|
|
|
|
|
|
|
void Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
|
|
|
|
|
|
|
|
|
|
void Load() override;
|
|
|
|
|
private:
|
|
|
|
|
float m_Timer = 0.0f;
|
|
|
|
|
};
|