From 9a59c0a47c507b4e3d1b55c091c19f51abc45bd9 Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Thu, 12 Jan 2023 15:15:59 +0100 Subject: [PATCH] [Editor] Fix missing "debug"/"release" export presets feature tags. So the same code can be used in editor and debug exports ("release" is kept for consistency). --- editor/export/editor_export_platform.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp index 028071ff6256..ef6c835b38ed 100644 --- a/editor/export/editor_export_platform.cpp +++ b/editor/export/editor_export_platform.cpp @@ -444,8 +444,10 @@ HashSet EditorExportPlatform::get_features(const Ref result.insert("template"); if (p_debug) { + result.insert("debug"); result.insert("template_debug"); } else { + result.insert("release"); result.insert("template_release"); }