@needle-tools/engine 3.27.3-beta → 3.27.5-beta
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 +10 -0
- package/dist/needle-engine.js +2988 -2967
- package/dist/needle-engine.light.js +2967 -2946
- package/dist/needle-engine.light.min.js +124 -122
- package/dist/needle-engine.light.umd.cjs +164 -162
- package/dist/needle-engine.min.js +124 -122
- package/dist/needle-engine.umd.cjs +164 -162
- package/lib/engine/engine_context.js +4 -0
- package/lib/engine/engine_context.js.map +1 -1
- package/lib/engine/engine_setup.js.map +1 -1
- package/lib/engine/engine_shims.d.ts +3 -0
- package/lib/engine/engine_shims.js +24 -0
- package/lib/engine/engine_shims.js.map +1 -0
- package/lib/engine-components/Component.d.ts +2 -0
- package/lib/engine-components/Component.js.map +1 -1
- package/lib/engine-components/Renderer.js +8 -7
- package/lib/engine-components/Renderer.js.map +1 -1
- package/lib/engine-components/export/usdz/ThreeUSDZExporter.d.ts +3 -4
- package/lib/engine-components/export/usdz/ThreeUSDZExporter.js +1 -0
- package/lib/engine-components/export/usdz/ThreeUSDZExporter.js.map +1 -1
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.d.ts +1 -0
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js +14 -6
- package/lib/engine-components/export/usdz/extensions/behavior/BehaviourComponents.js.map +1 -1
- package/lib/engine-components/ui/EventSystem.js +7 -1
- package/lib/engine-components/ui/EventSystem.js.map +1 -1
- package/package.json +1 -1
- package/src/engine/codegen/register_types.ts +2 -2
- package/src/engine/engine.ts +1 -2
- package/src/engine/engine_context.ts +7 -2
- package/src/engine/engine_setup.ts +1 -1
- package/src/engine/engine_shims.ts +31 -0
- package/src/engine-components/Component.ts +4 -0
- package/src/engine-components/Renderer.ts +9 -7
- package/src/engine-components/export/usdz/ThreeUSDZExporter.ts +3 -7
- package/src/engine-components/export/usdz/extensions/behavior/BehaviourComponents.ts +21 -7
- package/src/engine-components/ui/EventSystem.ts +9 -1
- package/src/engine-schemes/flatc.exe +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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.27.5-beta] - 2023-12-12
|
|
8
|
+
- Fix: Offscreencanvas support for iOS 16.x
|
|
9
|
+
- Fix: `PlayAudioOnClick` now respects playOnAwake if an explicit audio source is assigned
|
|
10
|
+
- Change: `EventSystem` should only check objects if they're meshes
|
|
11
|
+
|
|
12
|
+
## [3.27.4-beta] - 2023-12-11
|
|
13
|
+
- Fix: instancing now updating bounds in Needle Engine before render callback if necessary
|
|
14
|
+
- Change: expose `onPauseChanged` on components
|
|
15
|
+
- Change: handle case where a added coroutine function is not a coroutine (Generator)
|
|
16
|
+
|
|
7
17
|
## [3.27.3-beta] - 2023-12-09
|
|
8
18
|
- Add: `InstancingUtil.getRenderer` to get the three InstancedMesh for any Object3D (if it's using instancing)
|
|
9
19
|
- Add: instancing does now automatically update culling bounds if it's dirty. This can be disabled via `InstancingUtil.setAutoUpdateBounds(obj, false)`
|