[.NET] Disable output embedding on macOS, move it to the advanced options on other platforms.

This commit is contained in:
bruvzg 2024-04-09 11:12:06 +03:00
parent a7b860250f
commit bf558adcdd
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38
8 changed files with 42 additions and 116 deletions

View file

@ -135,6 +135,11 @@ void EditorExportPlatformIOS::_notification(int p_what) {
}
bool EditorExportPlatformIOS::get_export_option_visibility(const EditorExportPreset *p_preset, const String &p_option) const {
// Hide unsupported .NET embedding option.
if (p_option == "dotnet/embed_build_outputs") {
return false;
}
return true;
}