diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-02-05 12:10:37 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-03-12 21:34:40 +0200 |
commit | fee14eb5e86757e0a915ef6a0cf645a65a1296de (patch) | |
tree | c30056bbf14ae06d82274a391c5ea66b4d362900 /editor/export/editor_export_platform.cpp | |
parent | 61282068f4d59cb48f35ad95391728c58d9008ab (diff) | |
download | redot-engine-fee14eb5e86757e0a915ef6a0cf645a65a1296de.tar.gz |
[Import] Add "skip file" import option to skip (and exclude from export) importable formats, auto set it for the images used by bitmap font.
Diffstat (limited to 'editor/export/editor_export_platform.cpp')
-rw-r--r-- | editor/export/editor_export_platform.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp index c212bdb84f..d2a187bcfd 100644 --- a/editor/export/editor_export_platform.cpp +++ b/editor/export/editor_export_platform.cpp @@ -1196,6 +1196,11 @@ Error EditorExportPlatform::export_project_files(bool p_main_pack, const Ref<Edi String importer_type = config->get_value("remap", "importer"); + if (importer_type == "skip") { + // Skip file. + continue; + } + if (importer_type == "keep") { // Just keep file as-is. Vector<uint8_t> array = FileAccess::get_file_as_bytes(path); |