@needle-tools/engine 4.1.0-alpha.3 → 4.1.0-alpha.4
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 -0
- package/dist/needle-engine.js +2898 -2876
- package/dist/needle-engine.light.js +1448 -1426
- package/dist/needle-engine.light.min.js +100 -100
- package/dist/needle-engine.light.umd.cjs +100 -100
- package/dist/needle-engine.min.js +102 -102
- package/dist/needle-engine.umd.cjs +100 -100
- package/lib/engine-components/SceneSwitcher.d.ts +10 -0
- package/lib/engine-components/SceneSwitcher.js +38 -11
- package/lib/engine-components/SceneSwitcher.js.map +1 -1
- package/package.json +1 -1
- package/src/engine-components/SceneSwitcher.ts +40 -12
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,9 @@ 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.1.0-alpha.4] - 2024-01-10
|
|
8
|
+
- Add: SceneSwitcher methods for `unload()` and `reload()` the currently loaded scene
|
|
9
|
+
|
|
7
10
|
## [4.1.0-alpha.1] - 2024-01-09
|
|
8
11
|
- Add: Support for loading KTX2 textures as `environment-image` and `background-image` (e.g. `<needle-engine background-image="my-skybox.ktx2">`)
|
|
9
12
|
- Fix: Issue where raycasting was not using acceleration structures and instead falling back to slow raycasting. This release greatly improves raycasting performance
|