@needle-tools/engine 4.16.7-beta.1 → 4.16.8-next.78247d7
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 +6 -0
- package/components.needle.json +1 -1
- package/dist/{needle-engine.bundle-DNlAFP3L.umd.cjs → needle-engine.bundle-BqTvjI9u.umd.cjs} +90 -90
- package/dist/{needle-engine.bundle-dqsgn9ja.min.js → needle-engine.bundle-CsJF1sMe.min.js} +102 -102
- package/dist/{needle-engine.bundle-BgvXJBTN.js → needle-engine.bundle-D74_6pHd.js} +1529 -1516
- package/dist/needle-engine.d.ts +8 -1
- package/dist/needle-engine.js +2 -2
- package/dist/needle-engine.min.js +1 -1
- package/dist/needle-engine.umd.cjs +1 -1
- package/lib/engine/engine_mainloop_utils.js +5 -2
- package/lib/engine/engine_mainloop_utils.js.map +1 -1
- package/lib/engine/engine_materialpropertyblock.js +1 -1
- package/lib/engine/engine_materialpropertyblock.js.map +1 -1
- package/lib/engine-components/ui/Text.d.ts +8 -1
- package/lib/engine-components/ui/Text.js +29 -14
- package/lib/engine-components/ui/Text.js.map +1 -1
- package/package.json +2 -2
- package/src/engine/engine_mainloop_utils.ts +5 -2
- package/src/engine/engine_materialpropertyblock.ts +1 -1
- package/src/engine-components/ui/Text.ts +43 -18
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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
|
+
## [4.16.8] - 2026-04-28
|
|
8
|
+
- Fix: `MaterialPropertyBlock` multi-material change from opaque to transparent not applied correctly
|
|
9
|
+
- Fix: UI initialization bug caused by incorrect `activeInHierarchy` evaluation order (NE-6986)
|
|
10
|
+
- Fix: `NeedleXRSession` — prevent spurious `onLeaveXR` calls for scripts that never entered XR
|
|
11
|
+
- Fix: `NeedleXRSession` — inactive scripts no longer incorrectly detected as leaving XR
|
|
12
|
+
|
|
7
13
|
## [4.16.4] - 2026-03-18
|
|
8
14
|
- Fix: Splines catmullrom tension
|
|
9
15
|
- Fix: `focus-rect` attribute for e.g. `<needle-engine focus-rect=".mydiv" src="..."></needle-engine>`
|