You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
4.2.1 (although it complains when moving the file, still makes the same depren file)
4.3-stable
4.4-dev1
The message from 4.2.1:
4.3 & 4.4 are silent.
System information
Godot v4.4.dev1 - Manjaro Linux #1 SMP PREEMPT_DYNAMIC Mon Aug 19 09:51:26 UTC 2024 - X11 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3080 Laptop GPU - AMD Ryzen 9 5900HX with Radeon Graphics (16 Threads)
Issue description
When moving files around that are part of a resource, Godot creates an extra .depren file.
Deleting this file doesn't seem to do/break anything? I think if this is part of some internal process for moving files, that it didn't clean up after itself.
In the editor, select the icon.svg and drag it into the asset directory.
Open your file explorer and the root of the project now has an extra file: icon.res.depren
The text was updated successfully, but these errors were encountered:
I've been able to reproduce the issue on my end, and the issue seems to be in resource_format_binary.cpp. It's reaching this section of ResourceFormatLoaderBinary::rename_dependencies in the debugger:
I've not been able to figure out why, but the first line of the if is returning false even though the file exists, meaning it never gets around to cleaning up the files.
Tested versions
Reproducible in:
The message from 4.2.1:
4.3 & 4.4 are silent.
System information
Godot v4.4.dev1 - Manjaro Linux #1 SMP PREEMPT_DYNAMIC Mon Aug 19 09:51:26 UTC 2024 - X11 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3080 Laptop GPU - AMD Ryzen 9 5900HX with Radeon Graphics (16 Threads)
Issue description
When moving files around that are part of a resource, Godot creates an extra
.depren
file.Deleting this file doesn't seem to do/break anything? I think if this is part of some internal process for moving files, that it didn't clean up after itself.
It seems that this bug is back?
Steps to reproduce
icon.svg
icon.res
icon.svg
to a different directoryicon.res.depren
Deleting this file seems to have no effect on the project.
Minimal reproduction project (MRP)
Open this project in Godot: depren.zip
In the editor, select the
icon.svg
and drag it into theasset
directory.Open your file explorer and the root of the project now has an extra file:
icon.res.depren
The text was updated successfully, but these errors were encountered: