浏览代码

Merge pull request #41460 from Calinou/improve-resource-load-fail-message

Improve the resource loading error message to mention the need to import
Rémi Verschelde 5 年之前
父节点
当前提交
f57ade8f80
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      core/io/resource_loader.cpp

+ 2 - 1
core/io/resource_loader.cpp

@@ -195,7 +195,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);