@needle-tools/engine 3.10.0-alpha → 3.10.0-beta.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 +15 -0
- package/dist/needle-engine.js +91296 -473
- package/dist/needle-engine.light.js +88755 -473
- package/dist/needle-engine.light.min.js +6227 -1
- package/dist/needle-engine.light.umd.cjs +6227 -1
- package/dist/needle-engine.min.js +6240 -1
- package/dist/needle-engine.umd.cjs +6240 -1
- package/lib/engine/engine_element_overlay.d.ts +2 -5
- package/lib/engine/engine_element_overlay.js +18 -30
- package/lib/engine/engine_element_overlay.js.map +1 -1
- package/lib/engine/engine_input.js +10 -5
- package/lib/engine/engine_input.js.map +1 -1
- package/lib/engine-components/DragControls.d.ts +5 -1
- package/lib/engine-components/DragControls.js +32 -3
- package/lib/engine-components/DragControls.js.map +1 -1
- package/lib/engine-components/timeline/TimelineTracks.js +31 -14
- package/lib/engine-components/timeline/TimelineTracks.js.map +1 -1
- package/lib/engine-components/ui/Canvas.js +6 -1
- package/lib/engine-components/ui/Canvas.js.map +1 -1
- package/lib/engine-components/ui/Text.js +2 -1
- package/lib/engine-components/ui/Text.js.map +1 -1
- package/package.json +1 -1
- package/src/engine/engine_element_overlay.ts +17 -30
- package/src/engine/engine_input.ts +9 -4
- package/src/engine-components/DragControls.ts +24 -3
- package/src/engine-components/timeline/TimelineTracks.ts +30 -13
- package/src/engine-components/ui/Canvas.ts +9 -1
- package/src/engine-components/ui/Text.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,22 @@ 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.10.0-beta.1] - 2023-07-17
|
|
8
|
+
- Fix: prebundled package
|
|
9
|
+
|
|
10
|
+
## [3.10.0-beta] - 2023-07-17
|
|
11
|
+
- Fix: Text clipping in VR
|
|
12
|
+
- Fix: AR overlay `quit-ar` button not being properly detected
|
|
13
|
+
- Fix: Timeline animation track post-extrapolate set to `Hold`
|
|
14
|
+
- Fix: iOS touch event always producing double click due to not properly ignoring mouse-up event
|
|
15
|
+
- Change: DragControls to automatically add ObjectRaycaster if none is found in parent hierarchy
|
|
16
|
+
- Change: DragControls now expose options to hide gizmo and to disable view-dependant behaviour
|
|
17
|
+
|
|
7
18
|
## [3.10.0-alpha] - 2023-07-15
|
|
19
|
+
- Change: WebXR component now automatically adds a WebARSessionRoot on entering AR when no session root was found in the scene
|
|
20
|
+
- Change: `@syncField` can now sync objects by re-assigning the object to the same field (e.g. `this.mySyncedObject = this.mySyncedObject` to trigger syncing)
|
|
21
|
+
- Change: log error when `@syncField` is being used in unsupported types (currently we only support syncField being used inside Components directly)
|
|
22
|
+
- Change: improve message when circular scene loading is detected and link to documentation page
|
|
8
23
|
|
|
9
24
|
## [3.9.1-alpha] - 2023-07-14
|
|
10
25
|
- Add: SceneSwitcher now uses scene name by default. Can be turned off in component
|