@needle-tools/engine 4.11.5-next.ca8b86d → 4.11.5
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 +7 -5
- package/dist/{needle-engine.bundle-DsQVlU6y.umd.cjs → needle-engine.bundle-DMqWdPzL.umd.cjs} +76 -76
- package/dist/{needle-engine.bundle-9X7aq_Lu.js → needle-engine.bundle-DSm5itjo.js} +1812 -1777
- package/dist/{needle-engine.bundle-DAt-oKnG.min.js → needle-engine.bundle-DYdft7n9.min.js} +107 -107
- 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_context.d.ts +15 -5
- package/lib/engine/engine_context.js +25 -4
- package/lib/engine/engine_context.js.map +1 -1
- package/lib/engine/engine_scenelighting.d.ts +12 -1
- package/lib/engine/engine_scenelighting.js +21 -1
- package/lib/engine/engine_scenelighting.js.map +1 -1
- package/lib/engine-components/ReflectionProbe.js +16 -10
- package/lib/engine-components/ReflectionProbe.js.map +1 -1
- package/lib/engine-components/Renderer.js +2 -2
- package/lib/engine-components/Renderer.js.map +1 -1
- package/package.json +2 -2
- package/src/engine/engine_context.ts +36 -6
- package/src/engine/engine_scenelighting.ts +30 -8
- package/src/engine-components/ReflectionProbe.ts +18 -10
- package/src/engine-components/Renderer.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,13 @@ 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.11.5
|
|
8
|
-
- Fix: Timeline `instantiate`
|
|
9
|
-
- Fix: Renderer `sharedMaterials` being
|
|
10
|
-
- Fix:
|
|
11
|
-
-
|
|
7
|
+
## [4.11.5] - 2025-10-31
|
|
8
|
+
- Fix: Timeline cloning with `instantiate` ([forum 2733](<https://forum.needle.tools/t/2733>))
|
|
9
|
+
- Fix: Renderer `sharedMaterials` being null in awake
|
|
10
|
+
- Fix: Issue where lightmapped materials were cloned
|
|
11
|
+
- Fix: Apply lighting intensity multiplier in root scene
|
|
12
|
+
- Fix: GLTF extensions when loading scene with Blob URL
|
|
13
|
+
- Improve JSDoc documentation
|
|
12
14
|
|
|
13
15
|
## [4.11.4] - 2025-10-24
|
|
14
16
|
- Add: `qrcode-logo-src` attribute to `<needle-engine>` web component to override the logo displayed in the QR code button. Requires PRO license.
|