2022-08-06 03:01:59 +00:00
|
|
|
#include "DurationBehavior.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "BehaviorContext.h"
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void DurationBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
branch.duration = this->m_duration;
|
|
|
|
|
|
|
|
this->m_action->Handle(context, bitStream, branch);
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void DurationBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
branch.duration = this->m_duration;
|
|
|
|
|
|
|
|
this->m_action->Calculate(context, bitStream, branch);
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void DurationBehavior::Load() {
|
2021-12-05 17:54:36 +00:00
|
|
|
this->m_duration = GetFloat("duration");
|
|
|
|
|
|
|
|
this->m_action = GetAction("action");
|
|
|
|
}
|