roavatar-renderer 1.5.13 → 1.5.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -50311,10 +50311,10 @@ class EmitterGroupDesc extends RenderDesc {
50311
50311
  }
50312
50312
  if (FLAGS.PARTICLES_START_FULL) {
50313
50313
  for (const emitterDesc of this.emitterDescs) {
50314
- for (let i = 0; i < Math.min(emitterDesc.lifetime.Max * FLAGS.PARTICLES_START_FULL_FRAMERATE, FLAGS.PARTICLES_START_FULL * FLAGS.PARTICLES_START_FULL_FRAMERATE); i++) {
50314
+ for (let i = 0; i < Math.min(emitterDesc.lifetime.Max * 2 * FLAGS.PARTICLES_START_FULL_FRAMERATE, FLAGS.PARTICLES_START_FULL * FLAGS.PARTICLES_START_FULL_FRAMERATE); i++) {
50315
50315
  emitterDesc.tick(1 / FLAGS.PARTICLES_START_FULL_FRAMERATE, this);
50316
- emitterDesc.updateResult(this.renderScene);
50317
50316
  }
50317
+ emitterDesc.updateResult(this.renderScene);
50318
50318
  }
50319
50319
  }
50320
50320
  return this.results;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roavatar-renderer",
3
- "version": "1.5.13",
3
+ "version": "1.5.14",
4
4
  "description": "A renderer for Roblox avatars, used by the RoAvatar extension.",
5
5
  "author": "steinan",
6
6
  "type": "module",