bruce-cesium 6.9.0 → 6.9.1

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.
@@ -31348,6 +31348,8 @@
31348
31348
  this._isWalkthroughActive = false;
31349
31349
  this._walkthroughBar = null;
31350
31350
  this._isVR = false;
31351
+ // Fires whenever walkthrough mode is toggled on/off via this widget's own button.
31352
+ this.OnWalkthroughChange = new BModels.BruceEvent();
31351
31353
  this._generateStyles();
31352
31354
  this._generateElement();
31353
31355
  this._listenToRenders();
@@ -31996,6 +31998,9 @@
31996
31998
  this._updateStablePivot(pivot);
31997
31999
  });
31998
32000
  }
32001
+ IsWalkthroughActive() {
32002
+ return this._isWalkthroughActive;
32003
+ }
31999
32004
  _toggleWalkthrough() {
32000
32005
  this._setWalkthrough(!this._isWalkthroughActive);
32001
32006
  }
@@ -32020,6 +32025,7 @@
32020
32025
  (_c = this._walkthroughBar) === null || _c === void 0 ? void 0 : _c.Dispose();
32021
32026
  this._walkthroughBar = null;
32022
32027
  }
32028
+ this.OnWalkthroughChange.Trigger(active);
32023
32029
  }
32024
32030
  _toggleVR() {
32025
32031
  this._setVR(!this._isVR);
@@ -38291,7 +38297,7 @@
38291
38297
  StyleUtils.ApplyTypeStyle = ApplyTypeStyle;
38292
38298
  })(exports.StyleUtils || (exports.StyleUtils = {}));
38293
38299
 
38294
- const VERSION = "6.9.0";
38300
+ const VERSION = "6.9.1";
38295
38301
  /**
38296
38302
  * Updates the environment instance used by bruce-cesium to one specified.
38297
38303
  * This can be used to ensure that the instance a parent is referencing is shared between bruce-cesium, bruce-models, and the parent app.