@needle-tools/engine 2.67.14-pre → 2.67.16-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 +10 -0
- package/dist/needle-engine.js +5922 -5896
- package/dist/needle-engine.min.js +255 -255
- package/dist/needle-engine.umd.cjs +256 -256
- package/lib/engine-components/timeline/PlayableDirector.d.ts +3 -1
- package/lib/engine-components/timeline/PlayableDirector.js +40 -2
- package/lib/engine-components/timeline/PlayableDirector.js.map +1 -1
- package/lib/engine-components/timeline/TimelineTracks.d.ts +2 -2
- package/lib/engine-components/timeline/TimelineTracks.js +12 -14
- package/lib/engine-components/timeline/TimelineTracks.js.map +1 -1
- package/lib/engine-components/ui/Text.js +0 -1
- package/lib/engine-components/ui/Text.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/plugins/generate-font.js +4 -2
- package/src/engine/codegen/register_types.js +2 -2
- package/src/engine-components/timeline/PlayableDirector.ts +38 -2
- package/src/engine-components/timeline/TimelineTracks.ts +13 -16
- package/src/engine-components/ui/Text.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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.67.16-pre] - 2023-04-12
|
|
8
|
+
- Add: static ``AudioTrackHandler.dispose`` for disposing loaded audio data in timeline
|
|
9
|
+
- Fix: issue where only the first audio clip would be played in a timeline with multiple audio clips of the same file
|
|
10
|
+
- Change: Text should not change font name casing
|
|
11
|
+
- Change: Timeline does now wait for audio and first interaction by default (if any audio track is being used, this can be disabled by setting `waitForAudio` to false on the PlayableDirector component)
|
|
12
|
+
|
|
13
|
+
## [2.67.15-pre] - 2023-04-12
|
|
14
|
+
- Fix: Issue where ControlTrack was not being able to resolve bound timeline
|
|
15
|
+
- Fix: issue with font generation where font file name contained a dot
|
|
16
|
+
|
|
7
17
|
## [2.67.14-pre] - 2023-04-12
|
|
8
18
|
- Change: WebXR camera now copies culling mask from main camera
|
|
9
19
|
- Fix: WebXRController raycast on all layers
|