mirror of
https://github.com/godotengine/godot
synced 2024-11-02 14:43:31 +00:00
Merge pull request #71274 from Faless/fix/4.x_export_preset_debug_feature
[Editor] Fix missing "debug"/"release" export presets feature tags.
This commit is contained in:
commit
4ac649d838
1 changed files with 2 additions and 0 deletions
|
@ -444,8 +444,10 @@ HashSet<String> EditorExportPlatform::get_features(const Ref<EditorExportPreset>
|
||||||
|
|
||||||
result.insert("template");
|
result.insert("template");
|
||||||
if (p_debug) {
|
if (p_debug) {
|
||||||
|
result.insert("debug");
|
||||||
result.insert("template_debug");
|
result.insert("template_debug");
|
||||||
} else {
|
} else {
|
||||||
|
result.insert("release");
|
||||||
result.insert("template_release");
|
result.insert("template_release");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue