@needle-tools/engine 3.32.26-alpha → 3.32.27-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 +2031 -2029
- package/dist/needle-engine.light.js +21 -19
- package/dist/needle-engine.light.min.js +5 -5
- package/dist/needle-engine.light.umd.cjs +5 -5
- package/dist/needle-engine.min.js +157 -157
- package/dist/needle-engine.umd.cjs +5 -5
- package/lib/engine/engine_input.d.ts +10 -4
- package/lib/engine/engine_input.js +9 -6
- package/lib/engine/engine_input.js.map +1 -1
- package/lib/engine-components/export/usdz/USDZExporter.js +1 -1
- package/lib/engine-components/export/usdz/USDZExporter.js.map +1 -1
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js +3 -0
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js.map +1 -1
- package/lib/engine-components/webxr/WebARSessionRoot.js +8 -8
- package/lib/engine-components/webxr/WebARSessionRoot.js.map +1 -1
- package/package.json +1 -1
- package/src/engine/engine_input.ts +17 -6
- package/src/engine-components/export/usdz/USDZExporter.ts +1 -1
- package/src/engine-components/export/usdz/extensions/behavior/BehaviourComponents.ts +3 -0
- package/src/engine-components/webxr/WebARSessionRoot.ts +10 -10
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.32.27-alpha] - 2023-02-26
|
|
8
|
+
- Fix: Quicklook export caused by typo in USDZ mime-type
|
|
9
|
+
- Fix: Workaround iOS/visionOS bug: always include the tap trigger for audio even if nothing to tap on
|
|
10
|
+
- Change: Input `addEventListener` can now take options as a third argument
|
|
11
|
+
|
|
7
12
|
## [3.32.26-alpha] - 2023-02-23
|
|
8
13
|
- Add: Needle Menu. This first version will contain the WebXR options for now. Future versions will allow for more configuration
|
|
9
14
|
- Fix: webpack based project code optimization. This will improve e.g. nextjs production builds
|