@needle-tools/engine 3.6.2-beta → 3.6.2
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.
- package/CHANGELOG.md +6 -0
- package/dist/needle-engine.js +5927 -5923
- package/dist/needle-engine.light.js +5859 -5855
- package/dist/needle-engine.light.min.js +283 -283
- package/dist/needle-engine.light.umd.cjs +312 -312
- package/dist/needle-engine.min.js +284 -284
- package/dist/needle-engine.umd.cjs +313 -313
- package/lib/engine-components/AnimationUtils.js +2 -2
- package/lib/engine-components/AnimationUtils.js.map +1 -1
- package/lib/engine-components/ParticleSystem.d.ts +2 -1
- package/lib/engine-components/ParticleSystem.js +14 -5
- package/lib/engine-components/ParticleSystem.js.map +1 -1
- package/lib/engine-components/ParticleSystemModules.d.ts +1 -1
- package/lib/engine-components/ParticleSystemModules.js +6 -9
- package/lib/engine-components/ParticleSystemModules.js.map +1 -1
- package/lib/engine-components/ui/Graphic.js +3 -1
- package/lib/engine-components/ui/Graphic.js.map +1 -1
- package/lib/engine-components/ui/RectTransform.d.ts +0 -1
- package/lib/engine-components/ui/RectTransform.js +5 -6
- package/lib/engine-components/ui/RectTransform.js.map +1 -1
- package/package.json +1 -1
- package/src/engine-components/AnimationUtils.ts +2 -2
- package/src/engine-components/ParticleSystem.ts +14 -3
- package/src/engine-components/ParticleSystemModules.ts +6 -8
- package/src/engine-components/ui/Graphic.ts +3 -1
- package/src/engine-components/ui/RectTransform.ts +3 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [3.6.2] - 2023-06-01
|
|
8
|
+
- Fix: wrong UI z-offset in some cases
|
|
9
|
+
- Fix: Particle velocity over lifetime not using world rotation
|
|
10
|
+
- Fix: Particle burst being played twice
|
|
11
|
+
- Fix: Particle `playOnAwake` option not being respected
|
|
12
|
+
|
|
7
13
|
## [3.6.2-beta] - 2023-05-31
|
|
8
14
|
- Add: `setAllowOverlayMessages` to explictly disable overlay messages without url parameter
|
|
9
15
|
- Add: allow larger textures for USDZ generation
|