diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2021-09-23 22:09:15 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2021-09-30 13:29:29 +0100 |
commit | 6596c7bdc2692ea5717209750de08f4df7e0412b (patch) | |
tree | d879b52a8dba72e2a1fcec14156067c7262ed1c9 /editor/editor_export.cpp | |
parent | c38ef949514444897da224f2e7165d74c083d28b (diff) | |
download | redot-engine-6596c7bdc2692ea5717209750de08f4df7e0412b.tar.gz |
Add TextFile support across the editor
Diffstat (limited to 'editor/editor_export.cpp')
-rw-r--r-- | editor/editor_export.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp index 10ed76673e..8b289e3d94 100644 --- a/editor/editor_export.cpp +++ b/editor/editor_export.cpp @@ -451,6 +451,9 @@ void EditorExportPlatform::_export_find_resources(EditorFileSystemDirectory *p_d } for (int i = 0; i < p_dir->get_file_count(); i++) { + if (p_dir->get_file_type(i) == "TextFile") { + continue; + } p_paths.insert(p_dir->get_file_path(i)); } } |