mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-11 09:48:29 +00:00
Some checks failed
lint / clang-format (push) Has been cancelled
lint / custom-lint (push) Has been cancelled
decomp-dev / publish_progress_decomp_dev (1.0) (push) Has been cancelled
Compile and verify functions / compile_verify (push) Has been cancelled
Copy headers to separate repo / copy_headers (push) Has been cancelled
Check and verify that setup works on NixOS / nixos_verify (push) Has been cancelled
progress / publish_progress (push) Has been cancelled
testcompile / test_compile (push) Has been cancelled
Trigger full-sync on the tracker repo on push / api-trigger-workflow (push) Has been cancelled
26 lines
668 B
C++
26 lines
668 B
C++
#pragma once
|
|
|
|
#include "Project/Poser/KeyMoveCameraBase.h"
|
|
|
|
namespace al {
|
|
|
|
class KeyMoveCameraRailMove : public KeyMoveCameraBase {
|
|
public:
|
|
KeyMoveCameraRailMove(const char* name);
|
|
|
|
void initByPlacementObj(const PlacementInfo& info) override;
|
|
void initPointInfoTable(s32);
|
|
void loadParam(const ByamlIter& iter) override;
|
|
void start(const CameraStartInfo&) override;
|
|
void calcPoseInfoDirect(f32*, f32*, f32*) const;
|
|
void updatePose();
|
|
void update() override;
|
|
|
|
private:
|
|
s8 filler[0x198 - sizeof(KeyMoveCameraBase)];
|
|
};
|
|
|
|
} // namespace al
|
|
|
|
static_assert(sizeof(al::KeyMoveCameraRailMove) == 0x198, "al::KeyMoveCameraRailMove size");
|