소스 검색

Remove unnecessary comma in BVHLoader

Tristan Valcke 8 년 전
부모
커밋
0e55a079ce
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/js/loaders/BVHLoader.js

+ 1 - 1
examples/js/loaders/BVHLoader.js

@@ -116,7 +116,7 @@ THREE.BVHLoader.prototype = {
 			var keyframe = {
 				time: frameTime,
 				position: { x: 0, y: 0, z: 0 },
-				rotation: new THREE.Quaternion(),
+				rotation: new THREE.Quaternion()
 			};
 
 			bone.frames.push( keyframe );