bruce-cesium 6.8.2 → 6.8.3

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.
@@ -10675,6 +10675,7 @@
10675
10675
  if ((_a = payload.renderQueue) === null || _a === void 0 ? void 0 : _a.length) {
10676
10676
  this.distributeForRender(payload.renderQueue);
10677
10677
  }
10678
+ this.doEntityCheck(Object.keys(this.renderedEntities));
10678
10679
  this.viewer.scene.requestRender();
10679
10680
  }
10680
10681
  }
@@ -17090,6 +17091,7 @@
17090
17091
  if ((_a = payload.renderQueue) === null || _a === void 0 ? void 0 : _a.length) {
17091
17092
  this.distributeForRender(payload.renderQueue);
17092
17093
  }
17094
+ this.doEntityCheck(Object.keys(this.renderedEntities));
17093
17095
  this.viewer.scene.requestRender();
17094
17096
  }
17095
17097
  }
@@ -17912,6 +17914,14 @@
17912
17914
  this._osmIdToBruceId = payload.osmIdToBruceId;
17913
17915
  this.totalLoaded = payload.totalLoaded;
17914
17916
  if (this.sourceId) {
17917
+ if (this.item.ghostLoading == true) {
17918
+ this.cTileset.style = new Cesium.Cesium3DTileStyle({
17919
+ color: "rgba(255, 255, 250, 0.98)"
17920
+ });
17921
+ }
17922
+ else {
17923
+ this.cTileset.style = undefined;
17924
+ }
17915
17925
  this.visualsManager.ReassignMenuItem({
17916
17926
  fromMenuItemId: payload.sourceMenuItemId,
17917
17927
  toMenuItemId: this.item.id,
@@ -37434,7 +37444,7 @@
37434
37444
  StyleUtils.ApplyTypeStyle = ApplyTypeStyle;
37435
37445
  })(exports.StyleUtils || (exports.StyleUtils = {}));
37436
37446
 
37437
- const VERSION = "6.8.2";
37447
+ const VERSION = "6.8.3";
37438
37448
  /**
37439
37449
  * Updates the environment instance used by bruce-cesium to one specified.
37440
37450
  * This can be used to ensure that the instance a parent is referencing is shared between bruce-cesium, bruce-models, and the parent app.