mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
[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).
This commit is contained in:
parent
9943cb6242
commit
9a59c0a47c
1 changed files with 2 additions and 0 deletions
|
|
@ -444,8 +444,10 @@ HashSet<String> EditorExportPlatform::get_features(const Ref<EditorExportPreset>
|
|||
|
||||
result.insert("template");
|
||||
if (p_debug) {
|
||||
result.insert("debug");
|
||||
result.insert("template_debug");
|
||||
} else {
|
||||
result.insert("release");
|
||||
result.insert("template_release");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue