@needle-tools/engine 3.19.0 → 3.19.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 +9 -0
- package/dist/needle-engine.js +3777 -3704
- package/dist/needle-engine.light.js +3690 -3617
- package/dist/needle-engine.light.min.js +114 -114
- package/dist/needle-engine.light.umd.cjs +110 -110
- package/dist/needle-engine.min.js +109 -109
- package/dist/needle-engine.umd.cjs +111 -111
- package/lib/engine-components/CharacterController.js +9 -8
- package/lib/engine-components/CharacterController.js.map +1 -1
- package/lib/engine-components/ParticleSystem.d.ts +4 -1
- package/lib/engine-components/ParticleSystem.js +22 -10
- package/lib/engine-components/ParticleSystem.js.map +1 -1
- package/lib/engine-components/SceneSwitcher.js +10 -1
- package/lib/engine-components/SceneSwitcher.js.map +1 -1
- package/lib/engine-components/ui/Canvas.d.ts +5 -1
- package/lib/engine-components/ui/Canvas.js +22 -4
- package/lib/engine-components/ui/Canvas.js.map +1 -1
- package/lib/engine-components/ui/EventSystem.d.ts +1 -1
- package/lib/engine-components/ui/EventSystem.js +7 -3
- package/lib/engine-components/ui/EventSystem.js.map +1 -1
- package/lib/engine-components/ui/Interfaces.d.ts +6 -0
- package/lib/engine-components/ui/Interfaces.js.map +1 -1
- package/lib/engine-components/ui/Text.d.ts +4 -3
- package/lib/engine-components/ui/Text.js +14 -5
- package/lib/engine-components/ui/Text.js.map +1 -1
- package/lib/engine-components/webxr/WebARSessionRoot.d.ts +6 -1
- package/lib/engine-components/webxr/WebARSessionRoot.js +30 -4
- package/lib/engine-components/webxr/WebARSessionRoot.js.map +1 -1
- package/lib/engine-components/webxr/WebXR.js +3 -2
- package/lib/engine-components/webxr/WebXR.js.map +1 -1
- package/package.json +3 -3
- package/src/engine-components/CharacterController.ts +13 -9
- package/src/engine-components/ParticleSystem.ts +19 -14
- package/src/engine-components/SceneSwitcher.ts +9 -1
- package/src/engine-components/ui/Canvas.ts +25 -6
- package/src/engine-components/ui/EventSystem.ts +7 -3
- package/src/engine-components/ui/Interfaces.ts +7 -0
- package/src/engine-components/ui/Text.ts +16 -7
- package/src/engine-components/webxr/WebARSessionRoot.ts +35 -5
- package/src/engine-components/webxr/WebXR.ts +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +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
|
+
## [3.19.1] - 2023-09-27
|
|
8
|
+
- Add: ParticleSystem now supports HorizontalBillboard and VerticalBillboard
|
|
9
|
+
- Fix: [WebXR chromium bug](https://bugs.chromium.org/p/chromium/issues/detail?id=1475680) where the tracking transform matrix rotates roughly by 90° - we now add an WebXR Anchor to keep the scene at the placed location in the real world
|
|
10
|
+
- Fix: SceneSwitcher does now call event on first `ISceneEventListener` found on root level of a loaded scene (e.g. if a Unity scene is loaded that contains multiple children and does not have just one root object)
|
|
11
|
+
- Fix: Text UI clipping with multiple active screenspace canvases in scene
|
|
12
|
+
- Fix: Screenspace canvas events should not be blocked anymore by objects in 3D scene
|
|
13
|
+
- Fix: FirstPersonController rotation not being correctly / falsely resetted and flipped in some cases
|
|
14
|
+
- Fix: Last LODGroup entry not being used if the last state is
|
|
15
|
+
|
|
7
16
|
## [3.19.0] - 2023-09-26
|
|
8
17
|
- Fix: collider scale wrongly affecting physics objects
|
|
9
18
|
- Fix: collider debug lines should not be raycastable
|