mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 05:40:38 -04:00
26 lines
656 B
C++
26 lines
656 B
C++
#include "Game/AI/Action/actionPlayerWaterDivingJump.h"
|
|
|
|
namespace uking::action {
|
|
|
|
PlayerWaterDivingJump::PlayerWaterDivingJump(const InitArg& arg) : PlayerAction(arg) {}
|
|
|
|
void PlayerWaterDivingJump::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
PlayerAction::enter_(params);
|
|
}
|
|
|
|
void PlayerWaterDivingJump::leave_() {
|
|
PlayerAction::leave_();
|
|
}
|
|
|
|
void PlayerWaterDivingJump::loadParams_() {
|
|
getStaticParam(&mDiveSpeedF_s, "DiveSpeedF");
|
|
getStaticParam(&mDiveHeight_s, "DiveHeight");
|
|
getStaticParam(&mDiveSpeedDec_s, "DiveSpeedDec");
|
|
}
|
|
|
|
void PlayerWaterDivingJump::calc_() {
|
|
PlayerAction::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|