@needle-tools/engine 2.67.9-pre.1 → 2.67.11-pre
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 +15 -0
- package/dist/needle-engine.js +4275 -4300
- package/dist/needle-engine.umd.cjs +219 -219
- package/lib/engine/engine_context.js +1 -1
- package/lib/engine/engine_context.js.map +1 -1
- package/lib/engine/engine_element_loading.js +1 -0
- package/lib/engine/engine_element_loading.js.map +1 -1
- package/lib/engine/engine_mainloop_utils.js +13 -11
- package/lib/engine/engine_mainloop_utils.js.map +1 -1
- package/lib/engine-components/postprocessing/PostProcessingEffect.js +7 -3
- package/lib/engine-components/postprocessing/PostProcessingEffect.js.map +1 -1
- package/lib/engine-components/postprocessing/Volume.js +0 -2
- package/lib/engine-components/postprocessing/Volume.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -2
- package/src/engine/codegen/register_types.js +2 -2
- package/src/engine/engine_context.ts +1 -1
- package/src/engine/engine_element_loading.ts +1 -0
- package/src/engine/engine_mainloop_utils.ts +12 -10
- package/src/engine-components/postprocessing/PostProcessingEffect.ts +7 -3
- package/src/engine-components/postprocessing/Volume.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ 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.67.11-pre] - 2023-04-08
|
|
8
|
+
- Add: some checks for WebGPURenderer
|
|
9
|
+
|
|
10
|
+
## [2.67.10-pre] - 2023-04-06
|
|
11
|
+
- Add vite copy files build plugin
|
|
12
|
+
- Fix: PostProcessing not applying effects when enabled for the second time as well as removing earlier hack
|
|
13
|
+
- Change: update user-select/touch-action in project templates style.css to prevent accidental iOS selection of canvas
|
|
14
|
+
- Change: disable text selection on Needle logo
|
|
15
|
+
- Bump three version, see changes below
|
|
16
|
+
|
|
17
|
+
### Three
|
|
18
|
+
- change USDZExporter: pass writer into onAfterHierarchy callback, move onAfterHierarchy callback after scene hierarchy write
|
|
19
|
+
- fix USDZExporter: fix exception when trying to process render targets
|
|
20
|
+
- fix WebXRManager: Correctly update the user camera when it has a parent with a non-identity transform.
|
|
21
|
+
|
|
7
22
|
## [2.67.9-pre] - 2023-04-03
|
|
8
23
|
- Change: SpriteRenderer material to transparent
|
|
9
24
|
- Bump: tools package dependency
|