@needle-tools/engine 3.22.0 → 3.22.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 +5 -0
- package/dist/needle-engine.js +2184 -2153
- package/dist/needle-engine.light.js +4949 -4918
- package/dist/needle-engine.light.min.js +79 -79
- package/dist/needle-engine.light.umd.cjs +76 -76
- package/dist/needle-engine.min.js +80 -80
- package/dist/needle-engine.umd.cjs +77 -77
- package/lib/engine/engine_context.js +1 -1
- package/lib/engine/engine_context.js.map +1 -1
- package/lib/engine/engine_license.js +4 -4
- package/lib/engine/engine_license.js.map +1 -1
- package/lib/engine/engine_networking.d.ts +38 -0
- package/lib/engine/engine_networking.js +38 -0
- package/lib/engine/engine_networking.js.map +1 -1
- package/lib/engine-components/ScreenCapture.d.ts +3 -0
- package/lib/engine-components/ScreenCapture.js +34 -14
- package/lib/engine-components/ScreenCapture.js.map +1 -1
- package/package.json +1 -1
- package/src/engine/codegen/register_types.ts +2 -2
- package/src/engine/engine_context.ts +1 -1
- package/src/engine/engine_license.ts +4 -4
- package/src/engine/engine_networking.ts +39 -0
- package/src/engine-components/ScreenCapture.ts +36 -13
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.22.1] - 2023-10-30
|
|
8
|
+
- Fix: `Screencapture.autoconnect` when already connected to networking server or connection is in progress / window selection is currently open
|
|
9
|
+
- Change: when `isManagedExternally` is enabled then framerate is user controlled and not automatically clamped
|
|
10
|
+
- Change: add more documentation to networking methods
|
|
11
|
+
|
|
7
12
|
## [3.22.0] - 2023-10-26
|
|
8
13
|
- Fix: SyncedCamera deserialization warning
|
|
9
14
|
- Change: Collider property updates now trigger rigidbody mass recalculation immediately (if set to auto-mass)
|