- Add null check for UV property in UVNode
@@ -1726,7 +1726,12 @@ THREE.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 ++;
}