mirror of
https://github.com/zeldaret/tp
synced 2026-07-07 22:22:05 -04:00
work on d_camera / d_ev_camera (#2170)
This commit is contained in:
@@ -142,6 +142,14 @@ inline void mDoAud_taktModeMuteOff() {
|
||||
Z2AudioMgr::getInterface()->taktModeMuteOff();
|
||||
}
|
||||
|
||||
inline void mDoAud_getCameraMapInfo(u32 param_0) {
|
||||
Z2AudioMgr::getInterface()->getCameraMapInfo(param_0);
|
||||
}
|
||||
|
||||
inline void mDoAud_setCameraGroupInfo(u8 param_0) {
|
||||
Z2AudioMgr::getInterface()->setCameraGroupInfo(param_0);
|
||||
}
|
||||
|
||||
inline void mDoAud_mEnvse_framework() {
|
||||
g_mEnvSeMgr.framework();
|
||||
}
|
||||
|
||||
@@ -52,6 +52,7 @@ public:
|
||||
static f32 getStickValue(u32 pad) { return getCpadInfo(pad).mMainStickValue; }
|
||||
static s16 getStickAngle(u32 pad) { return getCpadInfo(pad).mMainStickAngle; }
|
||||
static s16 getStickAngle3D(u32 pad) { return getCpadInfo(pad).mMainStickAngle; }
|
||||
static f32 getSubStickX3D(u32 pad) { return getCpadInfo(pad).mCStickPosX; }
|
||||
static f32 getSubStickX(u32 pad) { return getCpadInfo(pad).mCStickPosX; }
|
||||
static f32 getSubStickY(u32 pad) { return getCpadInfo(pad).mCStickPosY; }
|
||||
static f32 getSubStickValue(u32 pad) { return getCpadInfo(pad).mCStickValue; }
|
||||
|
||||
@@ -138,6 +138,10 @@ inline void cMtx_inverse(const Mtx a, Mtx b) {
|
||||
mDoMtx_inverse(a, b);
|
||||
}
|
||||
|
||||
inline void cMtx_concatProjView(const Mtx a, const Mtx b, Mtx c) {
|
||||
mDoMtx_concatProjView(a, b, c);
|
||||
}
|
||||
|
||||
class mDoMtx_stack_c {
|
||||
public:
|
||||
mDoMtx_stack_c() {
|
||||
|
||||
Reference in New Issue
Block a user