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

[.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
8 changed files with 42 additions and 116 deletions

View File

@@ -1939,6 +1939,12 @@ bool EditorExportPlatformAndroid::get_export_option_visibility(const EditorExpor
// The APK templates are ignored if Gradle build is enabled.
return advanced_options_enabled && !bool(p_preset->get("gradle_build/use_gradle_build"));
}
// Hide .NET embedding option (always enabled).
if (p_option == "dotnet/embed_build_outputs") {
return false;
}
return true;
}