@needle-tools/engine 2.59.1-pre.1 → 2.60.0-pre
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 +12 -0
- package/dist/needle-engine.js +7382 -7345
- package/dist/needle-engine.umd.cjs +222 -222
- package/lib/engine/engine_gltf_builtin_components.js +13 -5
- package/lib/engine/engine_gltf_builtin_components.js.map +1 -1
- package/lib/engine/engine_serialization_builtin_serializer.d.ts +1 -1
- package/lib/engine/engine_serialization_builtin_serializer.js +14 -0
- package/lib/engine/engine_serialization_builtin_serializer.js.map +1 -1
- package/lib/engine/engine_types.d.ts +1 -0
- package/lib/engine/engine_types.js.map +1 -1
- package/lib/engine/extensions/NEEDLE_render_objects.js +19 -13
- package/lib/engine/extensions/NEEDLE_render_objects.js.map +1 -1
- package/lib/engine-components/ParticleSystem.d.ts +11 -1
- package/lib/engine-components/ParticleSystem.js +35 -8
- package/lib/engine-components/ParticleSystem.js.map +1 -1
- package/lib/engine-components/ParticleSystemModules.d.ts +2 -0
- package/lib/engine-components/ParticleSystemModules.js +2 -2
- package/lib/engine-components/ParticleSystemModules.js.map +1 -1
- package/lib/engine-components/ParticleSystemSubEmitter.d.ts +5 -1
- package/lib/engine-components/ParticleSystemSubEmitter.js +25 -5
- package/lib/engine-components/ParticleSystemSubEmitter.js.map +1 -1
- package/lib/engine-components/Skybox.d.ts +0 -1
- package/lib/engine-components/Skybox.js +2 -5
- package/lib/engine-components/Skybox.js.map +1 -1
- package/lib/engine-components/timeline/PlayableDirector.js +11 -2
- package/lib/engine-components/timeline/PlayableDirector.js.map +1 -1
- package/lib/engine-components/timeline/TimelineModels.d.ts +3 -2
- package/lib/engine-components/timeline/TimelineModels.js.map +1 -1
- package/lib/engine-components/timeline/TimelineTracks.d.ts +1 -0
- package/lib/engine-components/timeline/TimelineTracks.js +29 -7
- package/lib/engine-components/timeline/TimelineTracks.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/engine/engine_gltf_builtin_components.ts +14 -6
- package/src/engine/engine_serialization_builtin_serializer.ts +17 -1
- package/src/engine/engine_types.ts +1 -0
- package/src/engine/extensions/NEEDLE_render_objects.ts +22 -18
- package/src/engine-components/ParticleSystem.ts +36 -8
- package/src/engine-components/ParticleSystemModules.ts +3 -3
- package/src/engine-components/ParticleSystemSubEmitter.ts +32 -7
- package/src/engine-components/Skybox.ts +2 -4
- package/src/engine-components/timeline/PlayableDirector.ts +10 -2
- package/src/engine-components/timeline/TimelineModels.ts +4 -3
- package/src/engine-components/timeline/TimelineTracks.ts +31 -8
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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
|
+
## [2.60.0-pre] - 2023-01-25
|
|
8
|
+
- Add: Particles support for horizontal and vertical billboards
|
|
9
|
+
- Add: Timeline now supports reversed clip (for blender timeline)
|
|
10
|
+
- Change: bump gltf pipeline package dependency adding support for global `NEEDLE_TOKTX` environment variable
|
|
11
|
+
- Change: timeline clip pos and rot are now optional (for blender timeline)
|
|
12
|
+
- Fix: when first loading a gltf pass guidsmap to components (for blender timeline)
|
|
13
|
+
- Fix: scrubbing TimelineTrack scrubs audio sources as well now
|
|
14
|
+
- Fix: stencils for multimaterial objects
|
|
15
|
+
|
|
16
|
+
## [2.59.2-pre] - 2023-01-21
|
|
17
|
+
- Add: particles basic support for on birth and ondeath subemitter behaviour
|
|
18
|
+
|
|
7
19
|
## [2.59.1-pre.1] - 2023-01-20
|
|
8
20
|
- Fix: issue where click on overlay html element did also trigger events in the underlying engine scene
|
|
9
21
|
|