summaryrefslogtreecommitdiffstats
path: root/editor/import_dock.cpp
diff options
context:
space:
mode:
authorNolan Carroll <nolandcarroll@gmail.com>2023-09-28 12:10:18 -0400
committerNolan Carroll <nolandcarroll@gmail.com>2023-09-28 12:36:52 -0400
commit3770ee3c9e00290ff10f9ce0348d6a652d8db9c1 (patch)
tree36191aab88270650c80268d3a1a66d7c161646e3 /editor/import_dock.cpp
parent4c3dc26367518e006f8555c12f5d2df0b8a28192 (diff)
downloadredot-engine-3770ee3c9e00290ff10f9ce0348d6a652d8db9c1.tar.gz
avoid cleanup for non-loadable assets
Diffstat (limited to 'editor/import_dock.cpp')
-rw-r--r--editor/import_dock.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/editor/import_dock.cpp b/editor/import_dock.cpp
index d13c0e7f86..5996b459a5 100644
--- a/editor/import_dock.cpp
+++ b/editor/import_dock.cpp
@@ -499,9 +499,12 @@ void ImportDock::_reimport_attempt() {
String imported_with = config->get_value("remap", "importer");
if (imported_with != importer_name) {
- need_cleanup.push_back(params->paths[i]);
- if (_find_owners(EditorFileSystem::get_singleton()->get_filesystem(), params->paths[i])) {
- used_in_resources = true;
+ Ref<Resource> resource = ResourceLoader::load(params->paths[i]);
+ if (resource.is_valid()) {
+ need_cleanup.push_back(params->paths[i]);
+ if (_find_owners(EditorFileSystem::get_singleton()->get_filesystem(), params->paths[i])) {
+ used_in_resources = true;
+ }
}
}
}