mirror of
https://github.com/zeldaret/botw
synced 2026-08-18 21:27:36 -04:00
Generate actions
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#include "Game/AI/Action/actionNotice.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
Notice::Notice(const InitArg& arg) : ActionWithAS(arg) {}
|
||||
|
||||
Notice::~Notice() = default;
|
||||
|
||||
bool Notice::init_(sead::Heap* heap) {
|
||||
return ActionWithAS::init_(heap);
|
||||
}
|
||||
|
||||
void Notice::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
ActionWithAS::enter_(params);
|
||||
}
|
||||
|
||||
void Notice::leave_() {
|
||||
ActionWithAS::leave_();
|
||||
}
|
||||
|
||||
void Notice::loadParams_() {
|
||||
getStaticParam(&mPosReduceRatio_s, "PosReduceRatio");
|
||||
getStaticParam(&mAngReduceRatio_s, "AngReduceRatio");
|
||||
}
|
||||
|
||||
void Notice::calc_() {
|
||||
ActionWithAS::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
Reference in New Issue
Block a user