@needle-tools/engine 3.37.10-alpha.1 → 3.37.10-alpha.2
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 -0
- package/dist/needle-engine.js +2574 -2559
- package/dist/needle-engine.light.js +2464 -2449
- package/dist/needle-engine.light.min.js +206 -206
- package/dist/needle-engine.light.umd.cjs +200 -200
- package/dist/needle-engine.min.js +206 -206
- package/dist/needle-engine.umd.cjs +200 -200
- package/lib/engine/debug/debug.d.ts +4 -2
- package/lib/engine/debug/debug.js +4 -2
- package/lib/engine/debug/debug.js.map +1 -1
- package/lib/engine/debug/debug_overlay.d.ts +4 -0
- package/lib/engine/debug/debug_overlay.js +11 -0
- package/lib/engine/debug/debug_overlay.js.map +1 -1
- package/lib/engine/engine_element.js +8 -4
- package/lib/engine/engine_element.js.map +1 -1
- package/lib/engine/extensions/NEEDLE_techniques_webgl.js +8 -0
- package/lib/engine/extensions/NEEDLE_techniques_webgl.js.map +1 -1
- package/lib/engine-components/ContactShadows.js +1 -1
- package/lib/engine-components/ContactShadows.js.map +1 -1
- package/lib/engine-components/SyncedTransform.js +1 -1
- package/lib/engine-components/SyncedTransform.js.map +1 -1
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js +1 -0
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js.map +1 -1
- package/package.json +2 -2
- package/src/engine/debug/debug.ts +4 -2
- package/src/engine/debug/debug_overlay.ts +12 -0
- package/src/engine/engine_element.ts +10 -4
- package/src/engine/extensions/NEEDLE_techniques_webgl.ts +8 -0
- package/src/engine-components/ContactShadows.ts +1 -1
- package/src/engine-components/SyncedTransform.ts +1 -1
- package/src/engine-components/export/usdz/extensions/behavior/BehaviourComponents.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +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
|
+
## [3.37.10-alpha.2] - 2023-05-06
|
|
8
|
+
- Add: expose `clearOverlayMessages` method
|
|
9
|
+
- Fix: SyncedTransform should not set kinematic if `overridePhysics` is false
|
|
10
|
+
- Fix: CustomShader Screenspace support for shaders exported from Unity 2022
|
|
11
|
+
- Change: enable preload on audio sources dynamically created by PlayAudioOnClick
|
|
12
|
+
- Change: improve URL name parsing for loading screen for blob URLs
|
|
13
|
+
|
|
7
14
|
## [3.37.10-alpha.1] - 2023-05-06
|
|
8
15
|
- Add: static `ContactShadows.auto`
|
|
9
16
|
- Add: ContactShadows `autoFit` option to automatically fit the contact shadows at startup and `fitShadows()` method for applying autofit manually
|