@needle-tools/engine 3.44.2 → 3.44.4

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.
Files changed (32) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/dist/needle-engine.js +1106 -1093
  3. package/dist/needle-engine.light.js +219 -206
  4. package/dist/needle-engine.light.min.js +46 -46
  5. package/dist/needle-engine.light.umd.cjs +51 -51
  6. package/dist/needle-engine.min.js +74 -74
  7. package/dist/needle-engine.umd.cjs +79 -79
  8. package/lib/engine/engine_addressables.d.ts +8 -1
  9. package/lib/engine/engine_addressables.js +12 -2
  10. package/lib/engine/engine_addressables.js.map +1 -1
  11. package/lib/engine-components/AnimatorController.js +5 -1
  12. package/lib/engine-components/AnimatorController.js.map +1 -1
  13. package/lib/engine-components/DragControls.js +4 -2
  14. package/lib/engine-components/DragControls.js.map +1 -1
  15. package/lib/engine-components/SceneSwitcher.js +15 -1
  16. package/lib/engine-components/SceneSwitcher.js.map +1 -1
  17. package/lib/engine-components/webxr/controllers/XRControllerFollow.js +3 -0
  18. package/lib/engine-components/webxr/controllers/XRControllerFollow.js.map +1 -1
  19. package/lib/engine-components/webxr/controllers/XRControllerModel.d.ts +8 -0
  20. package/lib/engine-components/webxr/controllers/XRControllerModel.js +8 -0
  21. package/lib/engine-components/webxr/controllers/XRControllerModel.js.map +1 -1
  22. package/lib/engine-components/webxr/controllers/XRControllerMovement.d.ts +21 -7
  23. package/lib/engine-components/webxr/controllers/XRControllerMovement.js +22 -8
  24. package/lib/engine-components/webxr/controllers/XRControllerMovement.js.map +1 -1
  25. package/package.json +1 -1
  26. package/src/engine/engine_addressables.ts +13 -2
  27. package/src/engine-components/AnimatorController.ts +3 -1
  28. package/src/engine-components/DragControls.ts +4 -2
  29. package/src/engine-components/SceneSwitcher.ts +16 -3
  30. package/src/engine-components/webxr/controllers/XRControllerFollow.ts +3 -0
  31. package/src/engine-components/webxr/controllers/XRControllerModel.ts +8 -0
  32. package/src/engine-components/webxr/controllers/XRControllerMovement.ts +22 -9
package/CHANGELOG.md CHANGED
@@ -4,8 +4,14 @@ 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.44.2] - 2024-07-05
7
+ ## [3.44.4] - 2024-07-09
8
+ - Fix: SceneSwitcher can now activate and deactivate objects in the scene
9
+ - Fix: `XRControllerFollow` takes rig scale into account
10
+ - Change: WebXR controllers do not raycast the scene for hit visualization anymore by default. To use add `XRControllerMovement` and enable `showHits`
11
+
12
+ ## [3.44.3] - 2024-07-05
8
13
  - Add: TonemappingEffect `exposure` setting to control tonemapping exposure
14
+ - Fix: Animator transition for negative timescale
9
15
 
10
16
  ## [3.44.1] - 2024-07-05
11
17
  - Add: `instantiate` can now be invoked to clone objects without components