mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 11:32:13 +00:00
Merge pull request #94751 from RadiantUwU/patch-2
GLTF: Return the error file path when an import fails.
This commit is contained in:
commit
3c1570721f
@ -8560,7 +8560,7 @@ Error GLTFDocument::append_from_file(String p_path, Ref<GLTFState> p_state, uint
|
||||
|
||||
Error err;
|
||||
Ref<FileAccess> file = FileAccess::open(p_path, FileAccess::READ, &err);
|
||||
ERR_FAIL_COND_V(err != OK, ERR_FILE_CANT_OPEN);
|
||||
ERR_FAIL_COND_V_MSG(err != OK, err, vformat(R"(Can't open file at path "%s")", p_path));
|
||||
ERR_FAIL_COND_V(file.is_null(), ERR_FILE_CANT_OPEN);
|
||||
String base_path = p_base_path;
|
||||
if (base_path.is_empty()) {
|
||||
|
Loading…
Reference in New Issue
Block a user