|
|
|
|
|
by gabereiser
1976 days ago
|
|
>When building a project using IL2CPP, Unity converts IL code from scripts and assemblies to C++, before creating a native binary file (.exe, apk, .xap, for example) for your chosen platform. Some of the uses for IL2CPP include increasing the performance, security, and platform compatibility of your Unity projects. Mono runtime will load your assembly and bind it with all the pinvoke stuff and JIT. IL2cpp will take the IL code from your assemblies and convert it to C++ when making the binary, AOT. IL2cpp is the preferred way to make sure your game supports the most platforms. |
|
Yup, using Mono for iterating due to better build times is pretty common while using il2cpp for production releases.
ARM 64 bit can't even be targeted by Mono so unless you're keen to exhaust the address space il2cpp is the way to go.