@needle-tools/engine 3.7.6-beta → 3.7.7-beta
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 +4618 -4607
- package/dist/needle-engine.light.js +4386 -4375
- package/dist/needle-engine.light.min.js +152 -152
- package/dist/needle-engine.light.umd.cjs +156 -156
- package/dist/needle-engine.min.js +153 -153
- package/dist/needle-engine.umd.cjs +157 -157
- package/lib/engine-components/DragControls.js +4 -3
- package/lib/engine-components/DragControls.js.map +1 -1
- package/lib/engine-components/Renderer.js +5 -4
- package/lib/engine-components/Renderer.js.map +1 -1
- package/lib/engine-components/ui/PointerEvents.d.ts +1 -0
- package/lib/engine-components/ui/PointerEvents.js +5 -0
- package/lib/engine-components/ui/PointerEvents.js.map +1 -1
- package/lib/engine-components/utils/LookAt.js +7 -1
- package/lib/engine-components/utils/LookAt.js.map +1 -1
- package/package.json +1 -1
- package/plugins/vite/vite-4.4-hack.js +25 -16
- package/src/engine-components/DragControls.ts +7 -8
- package/src/engine-components/Renderer.ts +8 -7
- package/src/engine-components/ui/PointerEvents.ts +6 -0
- package/src/engine-components/utils/LookAt.ts +8 -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
|
+
## [3.7.7-beta] - 2023-07-11
|
|
8
|
+
- Fix: LookAt copyTarget + keepUpDirection
|
|
9
|
+
- Fix: DragControls not working on first touch on mobile / clone input event
|
|
10
|
+
- Fix: Renderer assigning renderOrder in URP on SkinnedMesh with multi-material
|
|
11
|
+
|
|
7
12
|
## [3.7.5-beta] - 2023-07-07
|
|
8
13
|
- Fix: USDZExporter should not show Needle banner when branding information is empty (pro only)
|
|
9
14
|
- Fix: USDZExporter sessionroot scale should be applied to object to be exported when the root is in the parent
|