summaryrefslogtreecommitdiff
path: root/include/JSystem
diff options
context:
space:
mode:
authorroeming <brother64youyou@gmail.com>2025-11-09 18:17:04 -0500
committerGitHub <noreply@github.com>2025-11-09 15:17:04 -0800
commit5c298bc401153e25a586fbed8d02bd5d61491d4e (patch)
treeb16a39ddc94f4328debe24c7012a38d8ec8dadb0 /include/JSystem
parentba7cdd4fe9919cca0419950995f6d80583299953 (diff)
D a npc gra matching debug (#2788)
* match all d_a_npc_gra functions in debug * update all offsets to match release * rename parameters * add ct hack for d_a_npc_gra * add suggestions * fix type * use sound enums * fix sinit and one regswap * fix wrong variable usage
Diffstat (limited to 'include/JSystem')
-rw-r--r--include/JSystem/JParticle/JPAEmitter.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/JSystem/JParticle/JPAEmitter.h b/include/JSystem/JParticle/JPAEmitter.h
index 21a2f590ad..13783df181 100644
--- a/include/JSystem/JParticle/JPAEmitter.h
+++ b/include/JSystem/JParticle/JPAEmitter.h
@@ -139,6 +139,7 @@ public:
}
void getGlobalTranslation(JGeometry::TVec3<f32>* out) const { out->set(mGlobalTrs); }
void setGlobalDynamicsScale(const JGeometry::TVec3<f32>& i_scale) { mGlobalScl.set(i_scale); }
+ void getGlobalDynamicsScale(JGeometry::TVec3<f32>* i_scale) const { i_scale->set(mGlobalScl); }
void setGlobalAlpha(u8 alpha) { mGlobalPrmClr.a = alpha; }
u8 getGlobalAlpha() const { return mGlobalPrmClr.a; }
void getGlobalPrmColor(GXColor& color) { color = mGlobalPrmClr; }