@formant/data-sdk 1.76.1 → 1.78.0
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 +571 -0
- package/dist/data-sdk.cjs.js +1 -1
- package/dist/data-sdk.cjs.js.map +1 -1
- package/dist/data-sdk.es.js +11 -1
- package/dist/data-sdk.es.js.map +1 -1
- package/dist/data-sdk.es6.js +11 -1
- package/dist/data-sdk.umd.js +1 -1
- package/dist/types/data-sdk/src/main.d.ts +1 -0
- package/dist/types/data-sdk/src/model/IJoy.d.ts +4 -0
- package/dist/types/data-sdk/src/model/IStreamTypeMap.d.ts +2 -0
- package/package.json +1 -1
package/dist/data-sdk.es.js
CHANGED
|
@@ -32733,7 +32733,17 @@ class TelemetryUniverseData extends BasicUniverseDataConnector {
|
|
|
32733
32733
|
return;
|
|
32734
32734
|
}
|
|
32735
32735
|
const c = this.getNearestPoint(u)[1];
|
|
32736
|
-
if (c.
|
|
32736
|
+
if (c.map) {
|
|
32737
|
+
const d = {
|
|
32738
|
+
width: c.map.width,
|
|
32739
|
+
height: c.map.height,
|
|
32740
|
+
worldToLocal: c.map.worldToLocal,
|
|
32741
|
+
resolution: c.map.resolution,
|
|
32742
|
+
origin: c.map.origin,
|
|
32743
|
+
url: c.map.url
|
|
32744
|
+
};
|
|
32745
|
+
s[c.map.url] = JSON.parse(JSON.stringify(d)), o(d);
|
|
32746
|
+
} else if (c.url) {
|
|
32737
32747
|
if (s[c.url]) {
|
|
32738
32748
|
o(s[c.url]);
|
|
32739
32749
|
return;
|