@needle-tools/engine 3.37.10-alpha.1 → 3.37.10-alpha.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.
Files changed (31) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/needle-engine.js +2574 -2559
  3. package/dist/needle-engine.light.js +2464 -2449
  4. package/dist/needle-engine.light.min.js +206 -206
  5. package/dist/needle-engine.light.umd.cjs +200 -200
  6. package/dist/needle-engine.min.js +206 -206
  7. package/dist/needle-engine.umd.cjs +200 -200
  8. package/lib/engine/debug/debug.d.ts +4 -2
  9. package/lib/engine/debug/debug.js +4 -2
  10. package/lib/engine/debug/debug.js.map +1 -1
  11. package/lib/engine/debug/debug_overlay.d.ts +4 -0
  12. package/lib/engine/debug/debug_overlay.js +11 -0
  13. package/lib/engine/debug/debug_overlay.js.map +1 -1
  14. package/lib/engine/engine_element.js +8 -4
  15. package/lib/engine/engine_element.js.map +1 -1
  16. package/lib/engine/extensions/NEEDLE_techniques_webgl.js +8 -0
  17. package/lib/engine/extensions/NEEDLE_techniques_webgl.js.map +1 -1
  18. package/lib/engine-components/ContactShadows.js +1 -1
  19. package/lib/engine-components/ContactShadows.js.map +1 -1
  20. package/lib/engine-components/SyncedTransform.js +1 -1
  21. package/lib/engine-components/SyncedTransform.js.map +1 -1
  22. package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js +1 -0
  23. package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js.map +1 -1
  24. package/package.json +2 -2
  25. package/src/engine/debug/debug.ts +4 -2
  26. package/src/engine/debug/debug_overlay.ts +12 -0
  27. package/src/engine/engine_element.ts +10 -4
  28. package/src/engine/extensions/NEEDLE_techniques_webgl.ts +8 -0
  29. package/src/engine-components/ContactShadows.ts +1 -1
  30. package/src/engine-components/SyncedTransform.ts +1 -1
  31. package/src/engine-components/export/usdz/extensions/behavior/BehaviourComponents.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@ 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.37.10-alpha.2] - 2023-05-06
8
+ - Add: expose `clearOverlayMessages` method
9
+ - Fix: SyncedTransform should not set kinematic if `overridePhysics` is false
10
+ - Fix: CustomShader Screenspace support for shaders exported from Unity 2022
11
+ - Change: enable preload on audio sources dynamically created by PlayAudioOnClick
12
+ - Change: improve URL name parsing for loading screen for blob URLs
13
+
7
14
  ## [3.37.10-alpha.1] - 2023-05-06
8
15
  - Add: static `ContactShadows.auto`
9
16
  - Add: ContactShadows `autoFit` option to automatically fit the contact shadows at startup and `fitShadows()` method for applying autofit manually