Resolves https://github.com/mrdoob/three.js/issues/22285 `texture.image` will always be undefined here as the textures are asynchronously loaded.
@@ -701,16 +701,7 @@ class FBXTreeParser {
}
const texture = textureMap.get( id );
-
- if ( texture !== undefined && texture.image !== undefined ) {
- return texture;
- } else {
- return undefined;
- }
+ return texture;