Skip to content

Releases: NewKrok/three-particles

1.0.3

15 Aug 13:37
Compare
Choose a tag to compare

Improvements

  • Some typedef fixes

1.0.2

16 Jul 20:11
Compare
Choose a tag to compare

Improvements

  • Some typedef fixes

1.0.1

18 Oct 20:04
Compare
Choose a tag to compare

Improvements

  • Type preparations - partly done for createParticleSystem
  • destroyParticleSystem was marked as deprecated, will be removed in the 1.1.0

Bugfixes

  • Circular dependency was resolved

1.0.0

02 Sep 21:55
Compare
Choose a tag to compare

Breaking changes

  • From now the createParticleSystem gives back an object not the instance directly which is a breaking change.
// The new way:
const someEffect = createParticleSystem(MY_EFFECT_CONFIG);
scene.add(someEffect.instance);

// New possibilities:
someEffect.pauseEmitter();
someEffect.resumeEmitter();
someEffect.dispose();

Improvements

  • Possible to pause/resume the emitter.
  • Possible to dispose the particle system directly, the destroyParticleSystem helper is not needed anymore.
  • Dependency updates.

0.8.4

30 May 22:02
Compare
Choose a tag to compare

Bugfixes

  • Fix Math/MathUtils related reference issues.

0.8.3

30 May 21:13
Compare
Choose a tag to compare

Improvements

  • Possible to set the current time (now) from an external source at creation time.
  • Dependency updates.

0.8.2

09 May 23:16
Compare
Choose a tag to compare

Dependency updates.

0.8.1

06 May 22:40
Compare
Choose a tag to compare

Reference of the gyroscope was fixed.

0.8.0

06 May 21:58
Compare
Choose a tag to compare

Features

  • Orbital velocity was added.

Improvements

  • Gravity is time based from now - you have to recalculate your gravity settings!
  • ThreeJS was updated to 0.140.0

Bugfixes

  • Fix for issues when the effect's parent were rotated.

image
image

0.7.1

27 Apr 22:17
Compare
Choose a tag to compare

Fixed issues when the effect container was rotated.
patchObject was replaced by the @newkrok/three-utils patchObject.