mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Return error when no ResourceFormatLoader found.
This commit is contained in:
parent
06fbc8395b
commit
6df3621b47
@ -280,6 +280,10 @@ 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));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user