From 5c298bc401153e25a586fbed8d02bd5d61491d4e Mon Sep 17 00:00:00 2001 From: roeming Date: Sun, 9 Nov 2025 18:17:04 -0500 Subject: 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 --- include/JSystem/JParticle/JPAEmitter.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/JSystem') 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* out) const { out->set(mGlobalTrs); } void setGlobalDynamicsScale(const JGeometry::TVec3& i_scale) { mGlobalScl.set(i_scale); } + void getGlobalDynamicsScale(JGeometry::TVec3* 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; } -- cgit v1.2.3