@needle-tools/engine 4.11.1-next.c03f9a0 → 4.11.2
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.bundle-DVNBli6W.min.js → needle-engine.bundle-BaUshOzH.min.js} +93 -93
- package/dist/{needle-engine.bundle-BmtD0Wly.umd.cjs → needle-engine.bundle-Ci2JE5sk.umd.cjs} +81 -81
- package/dist/{needle-engine.bundle-IWuICSj8.js → needle-engine.bundle-DxIfYnRl.js} +974 -950
- package/dist/needle-engine.js +2 -2
- package/dist/needle-engine.min.js +1 -1
- package/dist/needle-engine.umd.cjs +1 -1
- package/dist/rapier-BqdcSmKY.umd.cjs +1 -0
- package/dist/rapier-Cg3w3nFI.min.js +1 -0
- package/dist/rapier-sU12SWAs.js +5217 -0
- package/dist/{vendor-DWGd3dEf.min.js → vendor-BahM12Xj.min.js} +1 -1
- package/dist/{vendor-DJBpoQcM.js → vendor-Becub4o1.js} +1 -1
- package/dist/{vendor-CAWj5cBK.umd.cjs → vendor-H-9KkM5B.umd.cjs} +1 -1
- package/lib/engine-components/Animation.d.ts +1 -1
- package/lib/engine-components/Animation.js +2 -2
- package/lib/engine-components/Animation.js.map +1 -1
- package/lib/engine-components/export/usdz/ThreeUSDZExporter.d.ts +5 -5
- package/lib/engine-components/export/usdz/ThreeUSDZExporter.js +16 -13
- package/lib/engine-components/export/usdz/ThreeUSDZExporter.js.map +1 -1
- package/lib/engine-components/export/usdz/USDZExporter.js +0 -1
- package/lib/engine-components/export/usdz/USDZExporter.js.map +1 -1
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.d.ts +8 -0
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js +24 -0
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js.map +1 -1
- package/package.json +3 -3
- package/plugins/vite/build-pipeline.js +1 -1
- package/src/engine-components/Animation.ts +3 -2
- package/src/engine-components/export/usdz/ThreeUSDZExporter.ts +27 -15
- package/src/engine-components/export/usdz/USDZExporter.ts +0 -1
- package/src/engine-components/export/usdz/extensions/behavior/BehaviourComponents.ts +28 -0
- package/dist/rapier-BIeDFw5K.umd.cjs +0 -1
- package/dist/rapier-DQM98oaj.min.js +0 -1
- package/dist/rapier-DpcIWXum.js +0 -5217
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
|
+
## [4.11.2] - 2025-10-20
|
|
8
|
+
- Change: Animation component disable `randomStartTime`
|
|
9
|
+
- Change: Vite build build pipeline plugin increased default max wait time to 60 seconds.
|
|
10
|
+
This time is now exposed via `needlePlugins` user config, e.g. to increase it to 5 minutes write `needlePlugins(command, needleConfig, { buildPipeline: { maxWaitDuration: 300_000 } })` in your `vite.config.js`.
|
|
11
|
+
|
|
7
12
|
## [4.11.1] - 2025-10-16
|
|
8
13
|
- Fix: WebXR / VR issue where trying to access missing geometry during raycasting caused errors
|
|
9
14
|
- Change: ScrollFollow now only applies when scroll has changed. It also immediately jumps to the target position on the first update instead of interpolating (avoiding interpolation through long timeline animations).
|