@needle-tools/engine 3.2.0-alpha → 3.2.1-alpha
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 +5 -0
- package/dist/needle-engine.js +8024 -7968
- package/dist/needle-engine.min.js +262 -262
- package/dist/needle-engine.umd.cjs +263 -263
- package/lib/engine/engine_gltf.js +4 -0
- package/lib/engine/engine_gltf.js.map +1 -1
- package/lib/engine-components/SceneSwitcher.d.ts +1 -0
- package/lib/engine-components/SceneSwitcher.js +20 -4
- package/lib/engine-components/SceneSwitcher.js.map +1 -1
- package/lib/engine-components/timeline/PlayableDirector.js +6 -2
- package/lib/engine-components/timeline/PlayableDirector.js.map +1 -1
- package/lib/engine-components/timeline/SignalAsset.d.ts +5 -7
- package/lib/engine-components/timeline/SignalAsset.js +38 -6
- package/lib/engine-components/timeline/SignalAsset.js.map +1 -1
- package/lib/engine-components/timeline/TimelineTracks.js +31 -9
- package/lib/engine-components/timeline/TimelineTracks.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/engine/engine_gltf.ts +6 -2
- package/src/engine-components/SceneSwitcher.ts +23 -7
- package/src/engine-components/timeline/PlayableDirector.ts +13 -10
- package/src/engine-components/timeline/SignalAsset.ts +35 -8
- package/src/engine-components/timeline/TimelineTracks.ts +36 -12
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ 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.2.1-alpha] - 2023-04-19
|
|
8
|
+
- Change: SceneSwitcher clamp option
|
|
9
|
+
- Change: timeline signals without bound receiver are now invoked globally on all active SignalReceivers with the specific signal asset
|
|
10
|
+
- Change: internal check preventing errors during initialization for projects where the package is falsely added multiple times to the project by importing from internal types directly instead of `from "@needle-tools/engine"`
|
|
11
|
+
|
|
7
12
|
## [3.2.0-alpha] - 2023-04-19
|
|
8
13
|
- Add: built-in SceneSwitcher component
|
|
9
14
|
- Change: VideoPlayer.playInBackground is set to true by default
|