@needle-tools/engine 2.61.0-pre → 2.62.1-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 +11 -0
- package/dist/needle-engine.js +24479 -24329
- package/dist/needle-engine.umd.cjs +230 -232
- package/lib/engine/debug/debug_overlay.js +9 -9
- package/lib/engine/debug/debug_overlay.js.map +1 -1
- package/lib/engine/engine_addressables.js +16 -5
- package/lib/engine/engine_addressables.js.map +1 -1
- package/lib/engine/engine_loaders.d.ts +1 -0
- package/lib/engine/engine_loaders.js +12 -0
- package/lib/engine/engine_loaders.js.map +1 -1
- package/lib/engine-components/Animation.js +12 -3
- package/lib/engine-components/Animation.js.map +1 -1
- package/lib/engine-components/timeline/PlayableDirector.js +27 -17
- package/lib/engine-components/timeline/PlayableDirector.js.map +1 -1
- package/lib/engine-components/ui/EventSystem.js +3 -1
- package/lib/engine-components/ui/EventSystem.js.map +1 -1
- package/lib/engine-components/ui/Text.js +1 -0
- package/lib/engine-components/ui/Text.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/engine/debug/debug_overlay.ts +9 -9
- package/src/engine/engine_addressables.ts +13 -5
- package/src/engine/engine_loaders.ts +13 -0
- package/src/engine-components/Animation.ts +11 -3
- package/src/engine-components/timeline/PlayableDirector.ts +25 -17
- package/src/engine-components/ui/EventSystem.ts +3 -1
- package/src/engine-components/ui/Text.ts +2 -0
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
|
+
|
|
8
|
+
## [2.62.1-pre] - 2023-02-23
|
|
9
|
+
- Fix: pause wasn't evaluating and thus not pausing audio tracks
|
|
10
|
+
- Fix: debug overlay styles were not properly scoped and affected objects inside needle-engine tag
|
|
11
|
+
- Fix: Addressables wrong recursive instantiation error
|
|
12
|
+
- Fix: UI not showing fully when setting active at runtime
|
|
13
|
+
- Change: timeline tracks are now created immediately but their audio clips are deferred until audio is allowed
|
|
14
|
+
|
|
15
|
+
## [2.62.0-pre] - 2023-02-13
|
|
16
|
+
- Bump version
|
|
17
|
+
|
|
7
18
|
## [2.61.0-pre] - 2023-01-30
|
|
8
19
|
- Add: canvas applyRenderSettings
|
|
9
20
|
- Add: progressive support for particle system textures
|