Browse Source

Merge pull request #6516 from GregFrench/patch-2

Added missing semicolon
Ricardo Cabello 10 years ago
parent
commit
513481b6b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/cameras/Camera.js

+ 1 - 1
src/cameras/Camera.js

@@ -30,7 +30,7 @@ THREE.Camera.prototype.getWorldDirection = function () {
 
 		return result.set( 0, 0, - 1 ).applyQuaternion( quaternion );
 
-	}
+	};
 
 }();