@needle-tools/engine 3.2.13-alpha → 3.2.14-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 +7927 -7860
- package/dist/needle-engine.min.js +267 -267
- package/dist/needle-engine.umd.cjs +257 -257
- package/lib/engine/codegen/register_types.js +2 -0
- package/lib/engine/codegen/register_types.js.map +1 -1
- package/lib/engine-components/codegen/components.d.ts +1 -0
- package/lib/engine-components/codegen/components.js +1 -0
- package/lib/engine-components/codegen/components.js.map +1 -1
- package/lib/engine-components/export/usdz/USDZExporter.d.ts +0 -1
- package/lib/engine-components/export/usdz/USDZExporter.js +3 -4
- package/lib/engine-components/export/usdz/USDZExporter.js.map +1 -1
- package/lib/engine-components/ui/EventSystem.js +11 -4
- package/lib/engine-components/ui/EventSystem.js.map +1 -1
- package/lib/engine-components/utils/OpenURL.d.ts +21 -0
- package/lib/engine-components/utils/OpenURL.js +125 -0
- package/lib/engine-components/utils/OpenURL.js.map +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/engine/codegen/register_types.js +2 -0
- package/src/engine-components/codegen/components.ts +1 -0
- package/src/engine-components/export/usdz/USDZExporter.ts +3 -4
- package/src/engine-components/ui/EventSystem.ts +11 -5
- package/src/engine-components/utils/OpenURL.ts +119 -0
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.14-alpha] - 2023-04-28
|
|
8
|
+
- Add: OpenURL component
|
|
9
|
+
- Change: Implictly add Raycaster to scene if it is not found.
|
|
10
|
+
- Fix: USDZ export breaking if the object name is just a number
|
|
11
|
+
|
|
7
12
|
## [3.2.13-alpha] - 2023-04-27
|
|
8
13
|
- Add: USDZExporter editor shows warning if no objects are assigned and exposes quicklook overlay texts
|
|
9
14
|
- Add: USDZExporter callToActionButton can now invoke url to open
|