1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Prevent renaming to an unkown extension from FileSystem dock.

(cherry picked from commit c24433f500)
This commit is contained in:
jmb462
2022-01-16 19:08:40 +01:00
committed by Rémi Verschelde
parent 8db41cf94d
commit e8f3dad898
3 changed files with 11 additions and 0 deletions

View File

@@ -1498,6 +1498,10 @@ void EditorFileSystem::update_file(const String &p_file) {
_queue_update_script_classes();
}
Set<String> EditorFileSystem::get_valid_extensions() const {
return valid_extensions;
}
Error EditorFileSystem::_reimport_group(const String &p_group_file, const Vector<String> &p_files) {
String importer_name;