mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 14:38:41 -04:00
26 lines
602 B
C++
26 lines
602 B
C++
#include "Game/AI/Action/actionPlayerZoraJump.h"
|
|
|
|
namespace uking::action {
|
|
|
|
PlayerZoraJump::PlayerZoraJump(const InitArg& arg) : PlayerAction(arg) {}
|
|
|
|
void PlayerZoraJump::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
PlayerAction::enter_(params);
|
|
}
|
|
|
|
void PlayerZoraJump::leave_() {
|
|
PlayerAction::leave_();
|
|
}
|
|
|
|
void PlayerZoraJump::loadParams_() {
|
|
getStaticParam(&mJumpSpeedF_s, "JumpSpeedF");
|
|
getStaticParam(&mJumpHeight_s, "JumpHeight");
|
|
getDynamicParam(&mTargetPos_d, "TargetPos");
|
|
}
|
|
|
|
void PlayerZoraJump::calc_() {
|
|
PlayerAction::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|