three-cad-viewer 3.2.0 → 3.2.2

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.
@@ -62093,7 +62093,7 @@ void main() {
62093
62093
  this.updateChildrenStates(node, i);
62094
62094
  this.update(null, i);
62095
62095
  }
62096
- this.updateHandler();
62096
+ this.updateHandler(true);
62097
62097
  this.notificationHandler();
62098
62098
  }
62099
62099
 
@@ -64964,7 +64964,7 @@ void main() {
64964
64964
  }
64965
64965
  }
64966
64966
 
64967
- const version = "3.2.0";
64967
+ const version = "3.2.2";
64968
64968
 
64969
64969
  Mesh.prototype.dispose = function () {
64970
64970
  if (this.geometry) {
@@ -67669,7 +67669,7 @@ void main() {
67669
67669
  this.toggleAnimationLoop(true);
67670
67670
  }
67671
67671
  this.orientationMarker.setVisible(false);
67672
- this.update(false, false);
67672
+ this.update(true);
67673
67673
  let result = new Promise((resolve, reject) => {
67674
67674
  const canvas = this.display.getCanvas();
67675
67675
  this.renderer.setViewport(0, 0, this.cadWidth, this.height);
@@ -67685,7 +67685,7 @@ void main() {
67685
67685
  this.toggleAnimationLoop(false);
67686
67686
  }
67687
67687
  this.orientationMarker.setVisible(true);
67688
- this.update(false, false);
67688
+ this.update(true);
67689
67689
  },
67690
67690
  { once: true },
67691
67691
  );