bruce-cesium 6.2.5 → 6.2.7

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.
@@ -16574,6 +16574,10 @@
16574
16574
  * @param entities If an object is not available for a supplied Entity ID, then the cache for it is removed.
16575
16575
  */
16576
16576
  SetEntityCache(entityIds, entities) {
16577
+ if (!this.entityGatherer) {
16578
+ console.warn("TilesetStyler: EntityGatherer not initialized, cannot set entity cache.");
16579
+ return;
16580
+ }
16577
16581
  // Turn the Entities array into an accessible dictionary.
16578
16582
  const newDataMap = new Map();
16579
16583
  if (entities) {
@@ -34479,7 +34483,7 @@
34479
34483
  }
34480
34484
  }
34481
34485
 
34482
- const VERSION = "6.2.5";
34486
+ const VERSION = "6.2.7";
34483
34487
 
34484
34488
  exports.VERSION = VERSION;
34485
34489
  exports.isOutlineChanged = isOutlineChanged;