소스 검색

Ray: Added missing semicolon (#8657)

Michael Herzog 9 년 전
부모
커밋
809fbd9df8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/math/Ray.js

+ 1 - 1
src/math/Ray.js

@@ -270,7 +270,7 @@ THREE.Ray.prototype = {
 			// else t0 is in front of the ray, so return the first collision point scaled by t0
 			return this.at( t0, optionalTarget );
 
-		}
+		};
 
 	}(),