Large diffs are not rendered by default.

Large diffs are not rendered by default.

@@ -11942,12 +11942,14 @@ var BABYLON;
if (this.position.equals(position)) {
return;
}
this.position = position;
this.rebuildAnglesAndRadius();
};
ArcRotateCamera.prototype.setTarget = function (target) {
if (this.target.equals(target)) {
return;
}
this.target = target;
this.rebuildAnglesAndRadius();
};
ArcRotateCamera.prototype._getViewMatrix = function () {

Large diffs are not rendered by default.

@@ -464,12 +464,14 @@ var BABYLON;
if (this.position.equals(position)) {
return;
}
this.position = position;
this.rebuildAnglesAndRadius();
};
ArcRotateCamera.prototype.setTarget = function (target) {
if (this.target.equals(target)) {
return;
}
this.target = target;
this.rebuildAnglesAndRadius();
};
ArcRotateCamera.prototype._getViewMatrix = function () {
@@ -509,13 +509,16 @@
if (this.position.equals(position)) {
return;
}
this.position = position;

this.rebuildAnglesAndRadius();
}

public setTarget(target: Vector3): void {
if (this.target.equals(target)) {
return;
}
this.target = target;
this.rebuildAnglesAndRadius();
}