Przeglądaj źródła

Remove unnecessary comma in BVHLoader

Tristan Valcke 8 lat temu
rodzic
commit
0e55a079ce
1 zmienionych plików z 1 dodań i 1 usunięć
  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 );