jsHint again
This commit is contained in:
parent
01404dbf8a
commit
a4458ce389
|
@ -19,10 +19,10 @@ L3D.FixedCamera = function(arg1, arg2, arg3, arg4, position, target) {
|
||||||
|
|
||||||
this.target = target.clone();
|
this.target = target.clone();
|
||||||
|
|
||||||
}
|
};
|
||||||
L3D.FixedCamera.prototype = Object.create(THREE.PerspectiveCamera.prototype);
|
L3D.FixedCamera.prototype = Object.create(THREE.PerspectiveCamera.prototype);
|
||||||
L3D.FixedCamera.prototype.constructor = L3D.FixedCamera;
|
L3D.FixedCamera.prototype.constructor = L3D.FixedCamera;
|
||||||
|
|
||||||
L3D.FixedCamera.prototype.look = function() {
|
L3D.FixedCamera.prototype.look = function() {
|
||||||
this.lookAt(this.target);
|
this.lookAt(this.target);
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in New Issue