@needle-tools/engine 4.4.0-beta.4 → 4.4.0-beta.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 +3 -3
- package/dist/needle-engine.bundle.js +2044 -2035
- package/dist/needle-engine.bundle.light.js +2041 -2032
- package/dist/needle-engine.bundle.light.min.js +81 -81
- package/dist/needle-engine.bundle.light.umd.cjs +64 -64
- package/dist/needle-engine.bundle.min.js +81 -81
- package/dist/needle-engine.bundle.umd.cjs +64 -64
- package/lib/engine/engine_components.js +2 -0
- package/lib/engine/engine_components.js.map +1 -1
- package/lib/engine/engine_element.js +1 -1
- package/lib/engine/engine_element.js.map +1 -1
- package/lib/engine/engine_utils_screenshot.js +1 -1
- package/lib/engine/engine_utils_screenshot.js.map +1 -1
- package/lib/engine-components/ReflectionProbe.d.ts +1 -0
- package/lib/engine-components/ReflectionProbe.js +16 -9
- package/lib/engine-components/ReflectionProbe.js.map +1 -1
- package/package.json +1 -1
- package/src/engine/codegen/register_types.ts +2 -2
- package/src/engine/engine_components.ts +1 -0
- package/src/engine/engine_element.ts +1 -1
- package/src/engine/engine_utils_screenshot.ts +1 -1
- package/src/engine-components/ReflectionProbe.ts +15 -8
package/CHANGELOG.md
CHANGED
|
@@ -4,15 +4,15 @@ 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.4.0-beta.
|
|
7
|
+
## [4.4.0-beta.5] - 2025-04-07
|
|
8
8
|
- Add: `<needle-engine background-color="#ffdddd55">` does now support transparency. For example: `rgba(255, 255, 100, .5)` or `#ffdddd99` or `transparent` are valid values.
|
|
9
9
|
- Add: SyncedTransform `freeOwnership()` method
|
|
10
|
+
- Add: ReflectionProbe does now check boundingbox intersection
|
|
10
11
|
- Change: Scene background color or image set on `<needle-engine>` are not overridden anymore by the camera component.
|
|
11
12
|
- Fix: Improve license checks in CI environments (e.g. when running via a Github Action).
|
|
12
|
-
|
|
13
|
-
## [4.4.0-beta.3] - 2025-04-03
|
|
14
13
|
- Fix: Vite plugins for running in CI environment
|
|
15
14
|
- Fix: Vite `manualChunks` are not defined when `preserveModules` is set to true
|
|
15
|
+
- Fix: `screenshot()` checks if XR is presenting
|
|
16
16
|
|
|
17
17
|
## [4.4.0-beta] - 2025-03-28
|
|
18
18
|
- Add: `ObjectUtils.createPrimitive()` now supports scale as array
|