mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
Merge pull request #103439 from Hilderin/fix-autoloaded-scene-loses-built-in-script-when-upgrading-to-4.4
Fix autoloaded scene loses their built-in script when upgrading to 4.4
This commit is contained in:
commit
d57296f850
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ void UIDUpgradeTool::finish_upgrade() {
|
|||
|
||||
int step = 0;
|
||||
for (const String &file_path : resave_paths) {
|
||||
Ref<Resource> res = ResourceLoader::load(file_path);
|
||||
Ref<Resource> res = ResourceLoader::load(file_path, "", ResourceFormatLoader::CACHE_MODE_REPLACE);
|
||||
ep.step(TTR("Attempting to re-save ") + file_path, step++);
|
||||
if (res.is_valid()) {
|
||||
ResourceSaver::save(res);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue