mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 22:40:14 -04:00
31 lines
804 B
C++
31 lines
804 B
C++
#pragma once
|
|
|
|
#include "Game/AI/Action/actionPlayerAction.h"
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class PlayerWaterFallJump : public PlayerAction {
|
|
SEAD_RTTI_OVERRIDE(PlayerWaterFallJump, PlayerAction)
|
|
public:
|
|
explicit PlayerWaterFallJump(const InitArg& arg);
|
|
|
|
void enter_(ksys::act::ai::InlineParamPack* params) override;
|
|
void leave_() override;
|
|
void loadParams_() override;
|
|
|
|
protected:
|
|
void calc_() override;
|
|
|
|
// static_param at offset 0x20
|
|
const float* mJumpSpeedF_s{};
|
|
// static_param at offset 0x28
|
|
const float* mJumpHeight_s{};
|
|
// static_param at offset 0x30
|
|
const float* mJumpHeightWaterRemain_s{};
|
|
// static_param at offset 0x38
|
|
const float* mJumpHeightWithZora_s{};
|
|
};
|
|
|
|
} // namespace uking::action
|