Releases: NewKrok/three-particles
Releases · NewKrok/three-particles
1.0.1
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
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
Bugfixes
- Fix Math/MathUtils related reference issues.
0.8.3
Improvements
- Possible to set the current time (now) from an external source at creation time.
- Dependency updates.
0.8.1
Reference of the gyroscope was fixed.
0.8.0
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.
0.7.1
Fixed issues when the effect container was rotated.
patchObject was replaced by the @newkrok/three-utils patchObject.