1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Merge pull request #47391 from Calinou/platform-feature-tags-lowercase

Make platform feature tag names lowercase
This commit is contained in:
Juan Linietsky
2021-09-07 16:30:50 -03:00
committed by GitHub
13 changed files with 64 additions and 57 deletions

View File

@@ -2942,7 +2942,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
void EditorExportPlatformAndroid::get_platform_features(List<String> *r_features) {
r_features->push_back("mobile");
r_features->push_back("Android");
r_features->push_back("android");
}
void EditorExportPlatformAndroid::resolve_platform_feature_priorities(const Ref<EditorExportPreset> &p_preset, Set<String> &p_features) {