1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

[FileSystem Dock] Add option to show some unsupported files in the dock.

This commit is contained in:
bruvzg
2024-09-05 12:12:59 +03:00
parent b6223c0df0
commit 22b19c433f
8 changed files with 51 additions and 8 deletions

View File

@@ -903,7 +903,7 @@ bool ProjectExportDialog::_fill_tree(EditorFileSystemDirectory *p_dir, TreeItem
if (p_export_filter == EditorExportPreset::EXPORT_SELECTED_SCENES && type != "PackedScene") {
continue;
}
if (type == "TextFile") {
if (type == "TextFile" || type == "OtherFile") {
continue;
}