Browse Source

Terminate statement in Vector3

Tristan Valcke 8 years ago
parent
commit
58b05d3ec1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/math/Vector3.js

+ 1 - 1
src/math/Vector3.js

@@ -710,7 +710,7 @@ Vector3.prototype = {
 		if ( typeof m === 'number' ) {
 
 			console.warn( 'THREE.Vector3: setFromMatrixColumn now expects ( matrix, index ).' );
-			var temp = m
+			var temp = m;
 			m = index;
 			index = temp;