How to remove AdditionalIl2CppArgs

I have used

PlayerSettings.SetAdditionalIl2CppArgs();

to add additional il2cpp args, and I can check if I still have them with:

Debug.Log(PlayerSettings.GetAdditionalIl2CppArgs());

How can I remove the additional args now that I have set them?

I could just overwrite them with the default setting, but that doesnt seem clean.

How do I fully remove all additional il2cpp args?

https://docs.unity3d.com/ScriptReference/PlayerSettings.SetAdditionalIl2CppArgs.html

1 Like

thx bro