浏览代码

#18986: run node utils/modularize.js

John Marinelli 5 年之前
父节点
当前提交
db88e3ae42
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      examples/jsm/loaders/FBXLoader.js

+ 6 - 1
examples/jsm/loaders/FBXLoader.js

@@ -1772,7 +1772,12 @@ var FBXLoader = ( function () {
 				var i = 0;
 				while ( geoNode.LayerElementUV[ i ] ) {
 
-					geoInfo.uv.push( this.parseUVs( geoNode.LayerElementUV[ i ] ) );
+					if ( geoNode.LayerElementUV[ i ].UV ) {
+
+						geoInfo.uv.push( this.parseUVs( geoNode.LayerElementUV[ i ] ) );
+
+					}
+
 					i ++;
 
 				}