From 6b327c9f617c804cb71e09f845d9fca23d1e2c26 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sat, 2 May 2026 11:44:08 -0700 Subject: [PATCH] disable jpa interp for now closes #618 --- libs/JSystem/src/JParticle/JPAParticle.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/JSystem/src/JParticle/JPAParticle.cpp b/libs/JSystem/src/JParticle/JPAParticle.cpp index e75cb260d0..d3490ab294 100644 --- a/libs/JSystem/src/JParticle/JPAParticle.cpp +++ b/libs/JSystem/src/JParticle/JPAParticle.cpp @@ -206,6 +206,10 @@ void JPABaseParticle::init_c(JPAEmitterWorkData* work, JPABaseParticle* parent) #if TARGET_PC void JPABaseParticle::interp(JPAEmitterWorkData* work, void const* drawFunc) { + static bool enable = false; + if (!enable) + return; + // don't interpolate the first frame if (mAge == 0) return;