Improve the resource loading error message to mention the need to import
This is a common pitfall when setting up projects in a headless
environment.
(cherry picked from commit 58ed3037c0
)
This commit is contained in:
parent
6122a504ee
commit
ee97e45a69
1 changed files with 2 additions and 1 deletions
|
@ -275,7 +275,8 @@ RES ResourceLoader::_load(const String &p_path, const String &p_original_path, c
|
|||
return res;
|
||||
}
|
||||
|
||||
ERR_FAIL_COND_V_MSG(found, RES(), "Failed loading resource: " + p_path + ".");
|
||||
ERR_FAIL_COND_V_MSG(found, RES(),
|
||||
vformat("Failed loading resource: %s. Make sure resources have been imported by opening the project in the editor at least once.", p_path));
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
FileAccessRef file_check = FileAccess::create(FileAccess::ACCESS_RESOURCES);
|
||||
|
|
Loading…
Reference in a new issue