1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Fix lost of gdextension on editor startup.

Co-authored-by: NetroScript <noreply@enostrion.com>"
This commit is contained in:
Hilderin
2024-10-09 19:40:49 -04:00
parent 4c4e673344
commit fbd1643176
4 changed files with 37 additions and 22 deletions

View File

@@ -1268,6 +1268,11 @@ void ResourceFormatLoaderBinary::get_recognized_extensions_for_type(const String
return;
}
// res files not supported for GDExtension.
if (p_type == "GDExtension") {
return;
}
List<String> extensions;
ClassDB::get_extensions_for_type(p_type, &extensions);