summaryrefslogtreecommitdiffstats
path: root/editor/export/editor_export_platform.cpp
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2024-02-05 12:10:37 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-03-12 21:34:40 +0200
commitfee14eb5e86757e0a915ef6a0cf645a65a1296de (patch)
treec30056bbf14ae06d82274a391c5ea66b4d362900 /editor/export/editor_export_platform.cpp
parent61282068f4d59cb48f35ad95391728c58d9008ab (diff)
downloadredot-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.cpp5
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);