static duk_ret_t ParticleSystem_SoftStopParticleSystem(duk_context* ctx)
{
    ParticleSystem* thisObj = GetThisWeakObject<ParticleSystem>(ctx);
    thisObj->SoftStopParticleSystem();
    return 0;
}