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