diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-18 17:40:49 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-18 17:40:49 +0200 |
commit | 8ba3c2aeb45c5ccdd98c1991a3f85084f710b844 (patch) | |
tree | 75a58cfffa1cf632121c32796f8c9a208ec9e1d3 /editor/editor_file_system.cpp | |
parent | 57c868483a3f2c9da7764e694a03eee9bcc50f2a (diff) | |
parent | 5122a3e3b00e154c0148bb2709671e6c3a0b0432 (diff) | |
download | redot-engine-8ba3c2aeb45c5ccdd98c1991a3f85084f710b844.tar.gz |
Merge pull request #92972 from ogapo/pr/warn-on-duplicate-uids
Editor: Warn on UID duplicates
Diffstat (limited to 'editor/editor_file_system.cpp')
-rw-r--r-- | editor/editor_file_system.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp index 87053acfb6..cad615e6c5 100644 --- a/editor/editor_file_system.cpp +++ b/editor/editor_file_system.cpp @@ -1141,6 +1141,14 @@ void EditorFileSystem::_process_file_system(const ScannedDirectory *p_scan_dir, if (fi->uid != ResourceUID::INVALID_ID) { if (ResourceUID::get_singleton()->has_id(fi->uid)) { + // Restrict UID dupe warning to first-scan since we know there are no file moves going on yet. + if (first_scan) { + // Warn if we detect files with duplicate UIDs. + const String other_path = ResourceUID::get_singleton()->get_id_path(fi->uid); + if (other_path != path) { + WARN_PRINT(vformat("UID duplicate detected between %s and %s.", path, other_path)); + } + } ResourceUID::get_singleton()->set_id(fi->uid, path); } else { ResourceUID::get_singleton()->add_id(fi->uid, path); |