@inweb/viewer-visualize 26.10.1 → 26.10.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.
@@ -939,8 +939,8 @@ class OdaWalkDragger extends OdBaseDragger {
939
939
  else {
940
940
  move = Vector3d.createFromArray([0, currentDelta, 0]);
941
941
  }
942
- let newPos = pos.add(move);
943
- let newTarget = target.add(move);
942
+ const newPos = pos.add(move);
943
+ const newTarget = target.add(move);
944
944
  camera.setupCamera(newPos.toArray(), newTarget.toArray(), up.toArray());
945
945
  }
946
946
  moveBackward(currentDelta) {