소스 검색

Initialize variable to undefined due to "undefined variable" warning at line 80

Tristan VALCKE 8 년 전
부모
커밋
3c3ca94c1f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/DirectGeometry.js

+ 1 - 1
src/core/DirectGeometry.js

@@ -67,7 +67,7 @@ Object.assign( DirectGeometry.prototype, EventDispatcher.prototype, {
 
 		var group;
 		var groups = [];
-		var materialIndex;
+		var materialIndex = undefined;
 
 		var faces = geometry.faces;