bruce-cesium 3.2.5 → 3.2.6

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.
@@ -6254,6 +6254,16 @@
6254
6254
  CesiumEntityStyler.UpdateColorSetting("select", color);
6255
6255
  }
6256
6256
  };
6257
+ /**
6258
+ * Updates the highlight color.
6259
+ * This will not update the highlight color for already highlighted entities.
6260
+ * @param color
6261
+ */
6262
+ Register.prototype.SetHighlightColor = function (color) {
6263
+ if (color) {
6264
+ CesiumEntityStyler.UpdateColorSetting("highlight", color);
6265
+ }
6266
+ };
6257
6267
  Register.prototype.SetSelected = function (params) {
6258
6268
  var _a;
6259
6269
  var entityIds = params.entityIds, selected = params.selected, refreshIfSelected = params.refreshIfSelected, requestRender = params.requestRender;
@@ -19830,7 +19840,7 @@
19830
19840
  CesiumViewMonitor.Monitor = Monitor;
19831
19841
  })(exports.CesiumViewMonitor || (exports.CesiumViewMonitor = {}));
19832
19842
 
19833
- var VERSION$1 = "3.2.5";
19843
+ var VERSION$1 = "3.2.6";
19834
19844
 
19835
19845
  exports.VERSION = VERSION$1;
19836
19846
  exports.CesiumParabola = CesiumParabola;