@needle-tools/engine 3.19.4 → 3.19.6
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 +8 -0
- package/dist/needle-engine.js +2542 -2530
- package/dist/needle-engine.light.js +2454 -2442
- package/dist/needle-engine.light.min.js +94 -91
- package/dist/needle-engine.light.umd.cjs +89 -86
- package/dist/needle-engine.min.js +95 -92
- package/dist/needle-engine.umd.cjs +90 -87
- package/lib/engine/engine_element.js +3 -0
- package/lib/engine/engine_element.js.map +1 -1
- package/lib/engine-components/AudioSource.js +11 -4
- package/lib/engine-components/AudioSource.js.map +1 -1
- package/lib/engine-components/OrbitControls.d.ts +1 -0
- package/lib/engine-components/OrbitControls.js +13 -2
- package/lib/engine-components/OrbitControls.js.map +1 -1
- package/lib/engine-components/VideoPlayer.js +2 -0
- package/lib/engine-components/VideoPlayer.js.map +1 -1
- package/package.json +1 -1
- package/src/engine/engine_element.ts +3 -0
- package/src/engine-components/AudioSource.ts +6 -3
- package/src/engine-components/OrbitControls.ts +11 -2
- package/src/engine-components/VideoPlayer.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ 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.19.6] - 2023-10-02
|
|
8
|
+
- Fix: AudioSource does now create an AudioListener on the main camera if none is found in the scene
|
|
9
|
+
- Change: VideoPlayer does fallback to clip if src is empty or null
|
|
10
|
+
- Change: OrbitControls now expose `enableRotate` property
|
|
11
|
+
|
|
12
|
+
## [3.19.5] - 2023-10-02
|
|
13
|
+
- Fix: web component font import
|
|
14
|
+
|
|
7
15
|
## [3.19.4] - 2023-09-29
|
|
8
16
|
- Fix: Remove leftover OrbitControls log
|
|
9
17
|
- Change: Timeline TrackModel `markers` and `clips` fields are now optional
|