浏览代码

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 );
 
-		}
+		};
 
 	}(),