2021-12-05 17:54:36 +00:00
|
|
|
#include "StartBehavior.h"
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
|
|
|
|
void StartBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) {
|
|
|
|
branch.start = this->m_behaviorId;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
this->m_action->Handle(context, bit_stream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void StartBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) {
|
|
|
|
branch.start = this->m_behaviorId;
|
|
|
|
|
|
|
|
this->m_action->Calculate(context, bit_stream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void StartBehavior::Load() {
|
|
|
|
this->m_action = GetAction("action");
|
|
|
|
}
|