Generate actions

This commit is contained in:
Léo Lam
2020-12-26 22:42:23 +01:00
parent dff91d6b4c
commit 02c583ca4d
3864 changed files with 138282 additions and 6792 deletions
@@ -0,0 +1,33 @@
#include "Game/AI/Action/actionForkEmitExpandFieldWithCreate.h"
namespace uking::action {
ForkEmitExpandFieldWithCreate::ForkEmitExpandFieldWithCreate(const InitArg& arg)
: ForkEmitExpandField(arg) {}
ForkEmitExpandFieldWithCreate::~ForkEmitExpandFieldWithCreate() = default;
bool ForkEmitExpandFieldWithCreate::init_(sead::Heap* heap) {
return ForkEmitExpandField::init_(heap);
}
void ForkEmitExpandFieldWithCreate::enter_(ksys::act::ai::InlineParamPack* params) {
ForkEmitExpandField::enter_(params);
}
void ForkEmitExpandFieldWithCreate::leave_() {
ForkEmitExpandField::leave_();
}
void ForkEmitExpandFieldWithCreate::loadParams_() {
ForkEmitExpandField::loadParams_();
getStaticParam(&mScaleTime_s, "ScaleTime");
getStaticParam(&mIsReuseActor_s, "IsReuseActor");
getStaticParam(&mIsSetPartsLink_s, "IsSetPartsLink");
}
void ForkEmitExpandFieldWithCreate::calc_() {
ForkEmitExpandField::calc_();
}
} // namespace uking::action