@needle-tools/engine 2.65.0-pre.1 → 2.65.2-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 (29) hide show
  1. package/CHANGELOG.md +12 -1
  2. package/dist/needle-engine.js +9956 -9881
  3. package/dist/needle-engine.umd.cjs +211 -207
  4. package/lib/engine/engine_license.js +9 -5
  5. package/lib/engine/engine_license.js.map +1 -1
  6. package/lib/engine/extensions/NEEDLE_techniques_webgl.js +5 -2
  7. package/lib/engine/extensions/NEEDLE_techniques_webgl.js.map +1 -1
  8. package/lib/engine-components/Animator.d.ts +25 -1
  9. package/lib/engine-components/Animator.js +64 -37
  10. package/lib/engine-components/Animator.js.map +1 -1
  11. package/lib/engine-components/AnimatorController.d.ts +14 -12
  12. package/lib/engine-components/AnimatorController.js +15 -13
  13. package/lib/engine-components/AnimatorController.js.map +1 -1
  14. package/lib/engine-components/ParticleSystem.d.ts +12 -8
  15. package/lib/engine-components/ParticleSystem.js +59 -30
  16. package/lib/engine-components/ParticleSystem.js.map +1 -1
  17. package/lib/engine-components/ParticleSystemModules.d.ts +1 -0
  18. package/lib/engine-components/ParticleSystemModules.js +12 -5
  19. package/lib/engine-components/ParticleSystemModules.js.map +1 -1
  20. package/lib/engine-components/Skybox.js +18 -5
  21. package/lib/engine-components/Skybox.js.map +1 -1
  22. package/package.json +1 -1
  23. package/src/engine/engine_license.ts +9 -5
  24. package/src/engine/extensions/NEEDLE_techniques_webgl.ts +5 -2
  25. package/src/engine-components/Animator.ts +54 -27
  26. package/src/engine-components/AnimatorController.ts +15 -13
  27. package/src/engine-components/ParticleSystem.ts +68 -37
  28. package/src/engine-components/ParticleSystemModules.ts +12 -6
  29. package/src/engine-components/Skybox.ts +15 -5
package/CHANGELOG.md CHANGED
@@ -4,8 +4,19 @@ 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.65.2-pre] - 2023-03-11
8
+ - Change: custom shaders should not log warning for unsupported ``OrthoParams`` shader property
9
+ - Change: Animator methods starting with uppercase are marked as deprecated because UnityEvent methods are now exported starting with lowercase letter, added lowercase methods
10
+
11
+ ## [2.65.1-pre] - 2023-03-10
12
+ - Fix: ParticleSystem using `min/max` size in the renderer module is now minimally handled
13
+ - Fix: ParticleSystem emission when using local space with scaled parents
14
+ - Fix: ParticleSystem not finding SubEmitter systems
15
+ - Fix: ParticleSystem simulation speed not being applied to gravity and initial speed
16
+ - Fix: RemoteSkybox not resolving relative url correctly (when assigning a cubemap in the editor)
17
+
7
18
  ## [2.65.0-pre.1] - 2023-03-10
8
- - Fix: issue where `<needle-engine>` element was added not yet in the DOM when queried which caused the paths to not be assigned and the engine to not load
19
+ - Fix: issue where `<needle-engine>` element was not yet in the DOM when queried by exporter codegen which caused the paths to not be assigned and the engine to not load
9
20
 
10
21
  ## [2.65.0-pre] - 2023-03-09
11
22
  - Add: runtime checks for recursive loading to prevent it from breaking