@needle-tools/engine 3.32.5-alpha → 3.32.6-alpha
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 +5 -0
- package/dist/needle-engine.js +646 -617
- package/dist/needle-engine.light.js +625 -596
- package/dist/needle-engine.light.min.js +106 -106
- package/dist/needle-engine.light.umd.cjs +58 -58
- package/dist/needle-engine.min.js +71 -71
- package/dist/needle-engine.umd.cjs +141 -141
- package/lib/engine/engine_addressables.js +14 -16
- package/lib/engine/engine_addressables.js.map +1 -1
- package/lib/engine/engine_gameobject.d.ts +4 -1
- package/lib/engine/engine_gameobject.js +20 -0
- package/lib/engine/engine_gameobject.js.map +1 -1
- package/lib/engine/engine_networking_instantiate.d.ts +2 -2
- package/lib/engine/engine_networking_instantiate.js.map +1 -1
- package/lib/engine-components/timeline/PlayableDirector.js +2 -2
- package/lib/engine-components/timeline/PlayableDirector.js.map +1 -1
- package/lib/engine-components/timeline/TimelineTracks.d.ts +7 -1
- package/lib/engine-components/timeline/TimelineTracks.js +47 -12
- package/lib/engine-components/timeline/TimelineTracks.js.map +1 -1
- package/lib/engine-components/ui/EventSystem.js +16 -3
- package/lib/engine-components/ui/EventSystem.js.map +1 -1
- package/package.json +1 -1
- package/src/engine/engine_addressables.ts +17 -19
- package/src/engine/engine_gameobject.ts +24 -2
- package/src/engine/engine_networking_instantiate.ts +3 -3
- package/src/engine-components/timeline/PlayableDirector.ts +1 -1
- package/src/engine-components/timeline/TimelineTracks.ts +51 -14
- package/src/engine-components/ui/EventSystem.ts +16 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ 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.32.6-alpha] - 2023-01-27
|
|
8
|
+
- Fix: `AssetRefernence.instantiate` does now clone instantiate options before awaiting asset loading
|
|
9
|
+
- Fix: `onPointerMove` event was not being called in XR
|
|
10
|
+
- Fix: Timeline paused but evaluated should still start audio playback e.g. when controller through scroll
|
|
11
|
+
|
|
7
12
|
## [3.32.5-alpha] - 2023-01-26
|
|
8
13
|
- Fix: issue where `onEnterXR` callback was possibly not being invoked on all scripts if a script was removed or deleted during onEnterXR (and the underlying array was modified) causing e.g. the CollaborativeSandbox AR placement to not work
|
|
9
14
|
- Fix: minor issue where controller ray visualization would not respect rig scale
|