mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Make platform feature tag names lowercase
Feature tag names are still case-sensitive, but this makes built-in feature tags more consistent. - `Windows` -> `windows` - `OSX` -> `osx` - `LinuxBSD` -> `linuxbsd` - `Android` -> `android` - `iOS` -> `ios` - `HTML5` -> `html5` - `JavaScript` -> `javascript` - `UWP` -> `uwp`
This commit is contained in:
parent
7946066577
commit
2daaf0fdc3
13 changed files with 64 additions and 57 deletions
|
@ -485,7 +485,7 @@ Error EditorExportPlatformUWP::export_project(const Ref<EditorExportPreset> &p_p
|
|||
|
||||
void EditorExportPlatformUWP::get_platform_features(List<String> *r_features) {
|
||||
r_features->push_back("pc");
|
||||
r_features->push_back("UWP");
|
||||
r_features->push_back("uwp");
|
||||
}
|
||||
|
||||
void EditorExportPlatformUWP::resolve_platform_feature_priorities(const Ref<EditorExportPreset> &p_preset, Set<String> &p_features) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue