diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-11 14:18:05 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-11 14:18:05 -0600 |
commit | 3c1570721f49b4f27f612135b5c6308138d5f8f7 (patch) | |
tree | 3a65ce6305c420b0deebb9c352ac112fafd648df /modules/gltf/gltf_document.cpp | |
parent | 30d87229ed3638b1086ed25cac8d5acb62c0ea9a (diff) | |
parent | 5b0bf9e2b0bd252d4ab26d614aa5a94b8029daa1 (diff) | |
download | redot-engine-3c1570721f49b4f27f612135b5c6308138d5f8f7.tar.gz |
Merge pull request #94751 from RadiantUwU/patch-2
GLTF: Return the error file path when an import fails.
Diffstat (limited to 'modules/gltf/gltf_document.cpp')
-rw-r--r-- | modules/gltf/gltf_document.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp index aa482615da..43ff48aff7 100644 --- a/modules/gltf/gltf_document.cpp +++ b/modules/gltf/gltf_document.cpp @@ -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()) { |