jsHint again

This commit is contained in:
Thomas FORGIONE 2015-07-06 17:29:59 +02:00
parent 01404dbf8a
commit a4458ce389
1 changed files with 2 additions and 2 deletions

View File

@ -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);
} };