diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-09 22:29:41 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-09 22:29:41 +0200 |
commit | d3d10b55b49ce73ad316b21ba79d8648928b25d0 (patch) | |
tree | 5f45ddabe8eb71f42ed3c95be0a032524aeebafc /platform/ios/export/export_plugin.cpp | |
parent | 78fade3809f8b372c207f72195a8e4eae29de806 (diff) | |
parent | bf558adcdddad0e7bf54bf88298ac11cd0b77b77 (diff) | |
download | redot-engine-d3d10b55b49ce73ad316b21ba79d8648928b25d0.tar.gz |
Merge pull request #90422 from bruvzg/net_no_native_embed
[.NET] Disable output embedding on macOS, move it to the advanced options on other platforms.
Diffstat (limited to 'platform/ios/export/export_plugin.cpp')
-rw-r--r-- | platform/ios/export/export_plugin.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/ios/export/export_plugin.cpp b/platform/ios/export/export_plugin.cpp index dff4f844c7..dba1820ca7 100644 --- a/platform/ios/export/export_plugin.cpp +++ b/platform/ios/export/export_plugin.cpp @@ -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; } |