@needle-tools/engine 2.60.3-pre → 2.61.0-pre

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 +9 -0
  2. package/dist/needle-engine.js +2916 -2907
  3. package/dist/needle-engine.umd.cjs +65 -65
  4. package/lib/engine-components/AnimatorController.js +1 -2
  5. package/lib/engine-components/AnimatorController.js.map +1 -1
  6. package/lib/engine-components/Light.js +3 -1
  7. package/lib/engine-components/Light.js.map +1 -1
  8. package/lib/engine-components/ParticleSystem.d.ts +1 -0
  9. package/lib/engine-components/ParticleSystem.js +20 -3
  10. package/lib/engine-components/ParticleSystem.js.map +1 -1
  11. package/lib/engine-components/Renderer.js.map +1 -1
  12. package/lib/engine-components/WebXR.d.ts +1 -0
  13. package/lib/engine-components/WebXR.js +7 -0
  14. package/lib/engine-components/WebXR.js.map +1 -1
  15. package/lib/engine-components/ui/BaseUIComponent.js +1 -1
  16. package/lib/engine-components/ui/BaseUIComponent.js.map +1 -1
  17. package/lib/engine-components/ui/Canvas.d.ts +1 -0
  18. package/lib/engine-components/ui/Canvas.js +5 -0
  19. package/lib/engine-components/ui/Canvas.js.map +1 -1
  20. package/lib/engine-components/ui/Text.js +1 -1
  21. package/lib/engine-components/ui/Text.js.map +1 -1
  22. package/lib/tsconfig.tsbuildinfo +1 -1
  23. package/package.json +2 -2
  24. package/src/engine-components/AnimatorController.ts +1 -1
  25. package/src/engine-components/Light.ts +2 -1
  26. package/src/engine-components/ParticleSystem.ts +24 -6
  27. package/src/engine-components/Renderer.ts +1 -2
  28. package/src/engine-components/WebXR.ts +8 -0
  29. package/src/engine-components/ui/BaseUIComponent.ts +1 -1
  30. package/src/engine-components/ui/Canvas.ts +5 -0
  31. package/src/engine-components/ui/Text.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,15 @@ 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
+ ## [2.61.0-pre] - 2023-01-30
8
+ - Add: canvas applyRenderSettings
9
+ - Add: progressive support for particle system textures
10
+
11
+ ## [2.60.4-pre] - 2023-01-27
12
+ - Fix UI prefab instantiate throwing error at runtime
13
+ - Change: show warning when unsupported canvas type is selected
14
+ - Change: show warning when trying to use webxr features in non-secure context
15
+
7
16
  ## [2.60.3-pre] - 2023-01-26
8
17
  - Fix: camera fov for blender export allowing fieldOfView property to be undefined, where the fov should be handled by the blender exporter completely.
9
18