Browse Source

Added missing semicolon

Greg French 10 years ago
parent
commit
d2713d5643
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 );
 		return result.set( 0, 0, - 1 ).applyQuaternion( quaternion );
 
 
-	}
+	};
 
 
 }();
 }();