Prevent overriding file info of another file when reimport creates files

(cherry picked from commit aae48ac2b6)
This commit is contained in:
Bartłomiej T. Listwon 2023-12-08 14:47:28 +01:00 committed by Yuri Sizov
parent 5376aea688
commit b113602ce5
1 changed files with 3 additions and 0 deletions

View File

@ -2148,6 +2148,9 @@ Error EditorFileSystem::_reimport_file(const String &p_file, const HashMap<Strin
}
}
// Update cpos, newly created files could've changed the index of the reimported p_file.
_find_file(p_file, &fs, cpos);
//update modified times, to avoid reimport
fs->files[cpos]->modified_time = FileAccess::get_modified_time(p_file);
fs->files[cpos]->import_modified_time = FileAccess::get_modified_time(p_file + ".import");