浏览代码

Fixed bug where last group in OBJ was not added.

Paul Edwards 12 年之前
父节点
当前提交
f48940bfc9
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      examples/js/loaders/OBJLoader.js

+ 3 - 0
examples/js/loaders/OBJLoader.js

@@ -418,6 +418,9 @@ THREE.OBJLoader.prototype = {
 
 		}
 
+		// add the last group
+		meshN( undefined, undefined );
+
 		return group;
 
 	}