bruce-cesium 6.8.3 → 6.8.4
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/dist/bruce-cesium.es5.js +11 -9
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +9 -7
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/render-managers/tilesets/tileset-cad-render-manager.js +4 -3
- package/dist/lib/rendering/render-managers/tilesets/tileset-cad-render-manager.js.map +1 -1
- package/dist/lib/rendering/render-managers/tilesets/tileset-entities-render-manager.js +4 -3
- package/dist/lib/rendering/render-managers/tilesets/tileset-entities-render-manager.js.map +1 -1
- package/dist/types/bruce-cesium.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-cesium.umd.js
CHANGED
|
@@ -14506,7 +14506,7 @@
|
|
|
14506
14506
|
}
|
|
14507
14507
|
// Returns null (fall back to a normal Dispose()) if the tileset hasn't finished loading yet.
|
|
14508
14508
|
PrepareHandoff() {
|
|
14509
|
-
var _a, _b;
|
|
14509
|
+
var _a, _b, _c;
|
|
14510
14510
|
if (this.disposed || !this.cTileset || this.cTileset.isDestroyed()) {
|
|
14511
14511
|
return null;
|
|
14512
14512
|
}
|
|
@@ -14524,8 +14524,9 @@
|
|
|
14524
14524
|
}
|
|
14525
14525
|
// Not transferred, the receiving manager sets up its own fresh copy if needed.
|
|
14526
14526
|
this.viewerDateTimeDispose();
|
|
14527
|
-
(_a = this.
|
|
14528
|
-
(_b = this.
|
|
14527
|
+
(_a = this.styler) === null || _a === void 0 ? void 0 : _a.Dispose();
|
|
14528
|
+
(_b = this.tileLoadRemoval) === null || _b === void 0 ? void 0 : _b.call(this);
|
|
14529
|
+
(_c = this.tileUnloadRemoval) === null || _c === void 0 ? void 0 : _c.call(this);
|
|
14529
14530
|
this.tileLoadRemoval = null;
|
|
14530
14531
|
this.tileUnloadRemoval = null;
|
|
14531
14532
|
const payload = {
|
|
@@ -18319,7 +18320,7 @@
|
|
|
18319
18320
|
}
|
|
18320
18321
|
// Returns null (fall back to a normal Dispose()) if the tileset hasn't finished loading yet.
|
|
18321
18322
|
PrepareHandoff() {
|
|
18322
|
-
var _a, _b;
|
|
18323
|
+
var _a, _b, _c;
|
|
18323
18324
|
if (this.disposed || !this.cTileset || this.cTileset.isDestroyed()) {
|
|
18324
18325
|
return null;
|
|
18325
18326
|
}
|
|
@@ -18335,8 +18336,9 @@
|
|
|
18335
18336
|
clearInterval(this.handoffRestyleInterval);
|
|
18336
18337
|
this.handoffRestyleInterval = null;
|
|
18337
18338
|
}
|
|
18338
|
-
(_a = this.
|
|
18339
|
-
(_b = this.
|
|
18339
|
+
(_a = this.styler) === null || _a === void 0 ? void 0 : _a.Dispose();
|
|
18340
|
+
(_b = this.tileLoadRemoval) === null || _b === void 0 ? void 0 : _b.call(this);
|
|
18341
|
+
(_c = this.tileUnloadRemoval) === null || _c === void 0 ? void 0 : _c.call(this);
|
|
18340
18342
|
this.tileLoadRemoval = null;
|
|
18341
18343
|
this.tileUnloadRemoval = null;
|
|
18342
18344
|
const payload = {
|
|
@@ -37444,7 +37446,7 @@
|
|
|
37444
37446
|
StyleUtils.ApplyTypeStyle = ApplyTypeStyle;
|
|
37445
37447
|
})(exports.StyleUtils || (exports.StyleUtils = {}));
|
|
37446
37448
|
|
|
37447
|
-
const VERSION = "6.8.
|
|
37449
|
+
const VERSION = "6.8.4";
|
|
37448
37450
|
/**
|
|
37449
37451
|
* Updates the environment instance used by bruce-cesium to one specified.
|
|
37450
37452
|
* This can be used to ensure that the instance a parent is referencing is shared between bruce-cesium, bruce-models, and the parent app.
|