@needle-tools/engine 3.16.2 → 3.16.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 (36) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/needle-engine.js +3690 -3647
  3. package/dist/needle-engine.light.js +3594 -3551
  4. package/dist/needle-engine.light.min.js +194 -171
  5. package/dist/needle-engine.light.umd.cjs +204 -181
  6. package/dist/needle-engine.min.js +194 -171
  7. package/dist/needle-engine.umd.cjs +205 -182
  8. package/lib/engine/debug/debug.d.ts +1 -0
  9. package/lib/engine/debug/debug.js +3 -0
  10. package/lib/engine/debug/debug.js.map +1 -1
  11. package/lib/engine/debug/debug_overlay.js +2 -2
  12. package/lib/engine/engine_context.js +5 -0
  13. package/lib/engine/engine_context.js.map +1 -1
  14. package/lib/engine/engine_license.js +27 -6
  15. package/lib/engine/engine_license.js.map +1 -1
  16. package/lib/engine/engine_loaders.js +5 -2
  17. package/lib/engine/engine_loaders.js.map +1 -1
  18. package/lib/engine/engine_mainloop_utils.js +7 -0
  19. package/lib/engine/engine_mainloop_utils.js.map +1 -1
  20. package/lib/engine/engine_scenetools.js +10 -0
  21. package/lib/engine/engine_scenetools.js.map +1 -1
  22. package/lib/engine-components/CameraUtils.js +7 -3
  23. package/lib/engine-components/CameraUtils.js.map +1 -1
  24. package/lib/engine-components/ui/RectTransform.d.ts +0 -1
  25. package/lib/engine-components/ui/RectTransform.js +2 -5
  26. package/lib/engine-components/ui/RectTransform.js.map +1 -1
  27. package/package.json +1 -1
  28. package/src/engine/debug/debug.ts +3 -0
  29. package/src/engine/debug/debug_overlay.ts +1 -1
  30. package/src/engine/engine_context.ts +5 -0
  31. package/src/engine/engine_license.ts +28 -6
  32. package/src/engine/engine_loaders.ts +8 -4
  33. package/src/engine/engine_mainloop_utils.ts +7 -0
  34. package/src/engine/engine_scenetools.ts +10 -0
  35. package/src/engine-components/CameraUtils.ts +8 -4
  36. package/src/engine-components/ui/RectTransform.ts +4 -8
package/CHANGELOG.md CHANGED
@@ -4,6 +4,17 @@ 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.16.4] - 2023-09-16
8
+ - Add: help balloon message if user tries to open a local file without using a webserver
9
+ - Add: helpful console.log if user tries to add a component that is not a Needle Engine component
10
+
11
+ ## [3.16.3] - 2023-09-15
12
+ - Add: logo now respects prefer-reduced-motion, reduce and is immediately added instead of after 1s
13
+ - Fix: use default background color if GLB without camera and skybox is loaded
14
+ - Fix: ensure custom KTX2 loader is correctly initialized
15
+ - Fix: revert RectTransform change that broke hotspot rendering
16
+ - Change: adjust default backgroundBlurriness to match Blender defaults
17
+
7
18
  ## [3.16.2] - 2023-09-15
8
19
  - Add: mesh collider handling for invalid mesh data (non-indexed geometry)
9
20