瀏覽代碼

Make sure ResurceLoader.exists works on imported files, fixes #23555

Juan Linietsky 6 年之前
父節點
當前提交
ffd44530fb
共有 2 個文件被更改,包括 6 次插入0 次删除
  1. 5 0
      core/io/resource_importer.cpp
  2. 1 0
      core/io/resource_importer.h

+ 5 - 0
core/io/resource_importer.cpp

@@ -183,6 +183,11 @@ void ResourceFormatImporter::get_recognized_extensions_for_type(const String &p_
 	}
 }
 
+bool ResourceFormatImporter::exists(const String &p_path) const {
+
+	return FileAccess::exists(p_path + ".import");
+}
+
 bool ResourceFormatImporter::recognize_path(const String &p_path, const String &p_for_type) const {
 
 	return FileAccess::exists(p_path + ".import");

+ 1 - 0
core/io/resource_importer.h

@@ -69,6 +69,7 @@ public:
 	virtual bool is_import_valid(const String &p_path) const;
 	virtual void get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types = false);
 	virtual bool is_imported(const String &p_path) const { return recognize_path(p_path); }
+	virtual bool exists(const String &p_path) const;
 
 	virtual bool can_be_imported(const String &p_path) const;
 	virtual int get_import_order(const String &p_path) const;