Merge pull request #48904 from fire/gltf-img-failure
When one invalid image fails, it should only fail that single image.
This commit is contained in:
commit
37a417e838
1 changed files with 5 additions and 2 deletions
|
@ -3031,8 +3031,11 @@ Error GLTFDocument::_parse_images(Ref<GLTFState> state, const String &p_base_pat
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ERR_FAIL_COND_V_MSG(img.is_null(), ERR_FILE_CORRUPT,
|
if (img.is_null()) {
|
||||||
vformat("glTF: Couldn't load image index '%d' with its given mimetype: %s.", i, mimetype));
|
ERR_PRINT(vformat("glTF: Couldn't load image index '%d' with its given mimetype: %s.", i, mimetype));
|
||||||
|
state->images.push_back(Ref<Texture2D>());
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
Ref<ImageTexture> t;
|
Ref<ImageTexture> t;
|
||||||
t.instance();
|
t.instance();
|
||||||
|
|
Loading…
Reference in a new issue