summaryrefslogtreecommitdiff
path: root/include/JSystem
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-09-08 17:07:52 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2025-09-08 17:07:52 -0400
commiteb3b4ea2b6868ef8aa2ac6ce57fbbaec44cadf22 (patch)
tree1745b3dcdde3ea9c0a641ae11127d739a5072f8e /include/JSystem
parentc1b30df5b911af99f638b7296ede72a27e352036 (diff)
bomb nearly matching on demo, one regswap left
Diffstat (limited to 'include/JSystem')
-rw-r--r--include/JSystem/JParticle/JPAEmitter.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/JSystem/JParticle/JPAEmitter.h b/include/JSystem/JParticle/JPAEmitter.h
index 04199952..2828d490 100644
--- a/include/JSystem/JParticle/JPAEmitter.h
+++ b/include/JSystem/JParticle/JPAEmitter.h
@@ -234,6 +234,9 @@ public:
void setGlobalParticleScale(const JGeometry::TVec3<f32>& scale) {
mGlobalParticleScale.set(scale);
}
+ void setGlobalParticleScale(f32 scaleX, f32 scaleY) {
+ mGlobalParticleScale.set(scaleX, scaleY, 1.0f);
+ }
void setGlobalDynamicsScale(const JGeometry::TVec3<f32>& scale) {
mGlobalDynamicsScale.set(scale);
}
@@ -323,7 +326,6 @@ public:
void loadTexture(u8, GXTexMapID) {}
void setEmitterRotation(const JGeometry::TVec3<s16>&) {}
void setGlobalParticleHeightScale(f32 y) { mGlobalParticleScale.y = y; }
- void setGlobalParticleScale(f32, f32) {}
void setGlobalParticleWidthScale(f32) {}
static JPAEmitterInfo emtrInfo;