@needle-tools/engine 2.58.0-pre → 2.58.1-pre.1
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 +4 -0
- package/dist/needle-engine.js +61634 -666
- package/dist/needle-engine.umd.cjs +4269 -0
- package/lib/engine/engine_mainloop_utils.d.ts +3 -0
- package/lib/engine/engine_mainloop_utils.js +61 -0
- package/lib/engine/engine_mainloop_utils.js.map +1 -1
- package/lib/engine/engine_scenetools.js +3 -0
- package/lib/engine/engine_scenetools.js.map +1 -1
- package/lib/engine/engine_serialization_core.js +2 -0
- package/lib/engine/engine_serialization_core.js.map +1 -1
- package/lib/engine/engine_setup.js +1 -0
- package/lib/engine/engine_setup.js.map +1 -1
- package/lib/engine-components/Renderer.d.ts +7 -2
- package/lib/engine-components/Renderer.js +62 -2
- package/lib/engine-components/Renderer.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/vite.config.d.ts +2 -0
- package/lib/vite.config.js +26 -0
- package/lib/vite.config.js.map +1 -0
- package/package.json +21 -7
- package/src/engine/engine_mainloop_utils.ts +61 -1
- package/src/engine/engine_scenetools.ts +3 -0
- package/src/engine/engine_serialization_core.ts +1 -0
- package/src/engine/engine_setup.ts +1 -0
- package/src/engine-components/Renderer.ts +59 -2
- package/dist/needle-engine.d.ts +0 -6645
- package/dist/needle-engine.js.map +0 -7
- package/dist/needle-engine.min.js +0 -320
- package/dist/needle-engine.min.js.map +0 -7
- package/dist/needle-engine.tsbuildinfo +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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
|
+
## [2.58.1-pre] - 2023-01-09
|
|
8
|
+
- Add: Prewarm rendering of newly loaded objects to remove lag/jitter when they become visible for the first time
|
|
9
|
+
- Change: renderer now warns when sharedMaterials have missing entries. It then tries to remap those values when accessing them by index (e.g. when another component has a material index serialized and relies on that index to be pointing to the correct object)
|
|
10
|
+
|
|
7
11
|
## [2.58.0-pre] - 2023-01-09
|
|
8
12
|
- Add: EventSystem input events (e.g. IPointerClick) are now invoked for all buttons (e.g. right click)
|
|
9
13
|
- Add: Hot reload for components
|