@needle-tools/engine 2.60.3-pre → 2.60.4-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 +5 -0
- package/dist/needle-engine.js +1600 -1596
- package/dist/needle-engine.umd.cjs +48 -48
- package/lib/engine-components/WebXR.d.ts +1 -0
- package/lib/engine-components/WebXR.js +7 -0
- package/lib/engine-components/WebXR.js.map +1 -1
- package/lib/engine-components/ui/BaseUIComponent.js +1 -1
- package/lib/engine-components/ui/BaseUIComponent.js.map +1 -1
- package/lib/engine-components/ui/Canvas.js +2 -0
- package/lib/engine-components/ui/Canvas.js.map +1 -1
- package/lib/engine-components/ui/Text.js +1 -1
- package/lib/engine-components/ui/Text.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/engine-components/WebXR.ts +8 -0
- package/src/engine-components/ui/BaseUIComponent.ts +1 -1
- package/src/engine-components/ui/Canvas.ts +2 -0
- package/src/engine-components/ui/Text.ts +1 -1
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
|
+
## [2.60.4-pre] - 2023-01-27
|
|
8
|
+
- Fix UI prefab instantiate throwing error at runtime
|
|
9
|
+
- Change: show warning when unsupported canvas type is selected
|
|
10
|
+
- Change: show warning when trying to use webxr features in non-secure context
|
|
11
|
+
|
|
7
12
|
## [2.60.3-pre] - 2023-01-26
|
|
8
13
|
- Fix: camera fov for blender export allowing fieldOfView property to be undefined, where the fov should be handled by the blender exporter completely.
|
|
9
14
|
|