@needle-tools/engine 2.60.4-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.
- package/CHANGELOG.md +4 -0
- package/dist/needle-engine.js +1989 -1984
- package/dist/needle-engine.umd.cjs +60 -60
- package/lib/engine-components/AnimatorController.js +1 -2
- package/lib/engine-components/AnimatorController.js.map +1 -1
- package/lib/engine-components/Light.js +3 -1
- package/lib/engine-components/Light.js.map +1 -1
- package/lib/engine-components/ParticleSystem.d.ts +1 -0
- package/lib/engine-components/ParticleSystem.js +20 -3
- package/lib/engine-components/ParticleSystem.js.map +1 -1
- package/lib/engine-components/Renderer.js.map +1 -1
- package/lib/engine-components/ui/Canvas.d.ts +1 -0
- package/lib/engine-components/ui/Canvas.js +3 -0
- package/lib/engine-components/ui/Canvas.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/engine-components/AnimatorController.ts +1 -1
- package/src/engine-components/Light.ts +2 -1
- package/src/engine-components/ParticleSystem.ts +24 -6
- package/src/engine-components/Renderer.ts +1 -2
- package/src/engine-components/ui/Canvas.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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
|
+
|
|
7
11
|
## [2.60.4-pre] - 2023-01-27
|
|
8
12
|
- Fix UI prefab instantiate throwing error at runtime
|
|
9
13
|
- Change: show warning when unsupported canvas type is selected
|