diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-03 03:30:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-03 03:30:50 +0200 |
commit | eafb565f0cba935ce4152032d2493d50e3513236 (patch) | |
tree | 475edaa45cf8b220037e40b0e65c19815f5626bd | |
parent | e16242b73ba723f58db01fe48dafecf994a27f33 (diff) | |
parent | e72f3abe2f09b6e2ee28ac495c4a817a19aeda55 (diff) |
Merge pull request #62653 from akien-mga/gltf-warning-typo-fix
-rw-r--r-- | modules/gltf/gltf_document.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp index 2017355717..36d985eff3 100644 --- a/modules/gltf/gltf_document.cpp +++ b/modules/gltf/gltf_document.cpp @@ -3080,9 +3080,9 @@ Error GLTFDocument::_parse_images(Ref<GLTFState> state, const String &p_base_pat // We'll assume that we use either URI or bufferView, so let's warn the user // if their image somehow uses both. And fail if it has neither. - ERR_CONTINUE_MSG(!d.has("uri") && !d.has("bufferView"), "Invalid image definition in glTF file, it should specific an 'uri' or 'bufferView'."); + ERR_CONTINUE_MSG(!d.has("uri") && !d.has("bufferView"), "Invalid image definition in glTF file, it should specify an 'uri' or 'bufferView'."); if (d.has("uri") && d.has("bufferView")) { - WARN_PRINT("Invalid image definition in glTF file using both 'uri' and 'bufferView'. 'bufferView' will take precedence."); + WARN_PRINT("Invalid image definition in glTF file using both 'uri' and 'bufferView'. 'uri' will take precedence."); } String mimetype; |