Revert "Return error when no ResourceFormatLoader found."

This reverts commit 6df3621b47.

Fixes #97153.
This commit is contained in:
Rémi Verschelde 2024-09-19 12:41:28 +02:00
parent 694d3c2930
commit b638967d01
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -303,10 +303,6 @@ Ref<Resource> ResourceLoader::_load(const String &p_path, const String &p_origin
return res;
}
if (r_error) {
*r_error = ERR_FILE_UNRECOGNIZED;
}
ERR_FAIL_COND_V_MSG(found, Ref<Resource>(),
vformat("Failed loading resource: %s. Make sure resources have been imported by opening the project in the editor at least once.", p_path));