mirror of
https://github.com/godotengine/godot.git
synced 2024-11-26 06:03:38 +00:00
Merge pull request #93909 from VictorKostinOfficial/missing-custom-resources
Fix custom resources often missing from Quick Load dialog
This commit is contained in:
commit
5f0a2dd0f2
@ -326,8 +326,8 @@ void EditorFileSystem::_scan_filesystem() {
|
||||
FileCache fc;
|
||||
fc.type = split[1];
|
||||
if (fc.type.contains("/")) {
|
||||
fc.type = fc.type.get_slice("/", 0);
|
||||
fc.resource_script_class = fc.type.get_slice("/", 1);
|
||||
fc.type = split[1].get_slice("/", 0);
|
||||
fc.resource_script_class = split[1].get_slice("/", 1);
|
||||
}
|
||||
fc.uid = split[2].to_int();
|
||||
fc.modification_time = split[3].to_int();
|
||||
|
Loading…
Reference in New Issue
Block a user