ソースを参照

Remove unused local variable 'child' in Bone.js

Elwin Arens 11 年 前
コミット
c8cfa5d634
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/objects/Bone.js

+ 1 - 1
src/objects/Bone.js

@@ -45,7 +45,7 @@ THREE.Bone.prototype.update = function ( parentSkinMatrix, forceUpdate ) {
 
 	// update children
 
-	var child, i, l = this.children.length;
+	var i, l = this.children.length;
 
 	for ( i = 0; i < l; i ++ ) {