Scripting back end is the Unity term for the runtime technology that compiles and executes your C# scriptsA piece of code that allows you to create your own Components, trigger game events, modify Component properties over time and respond to user input in any way you like. More info
See in Glossary. It determines how your code is turned into executable instructions and what runtime manages it on target platforms.
The choice of a scripting back end can impact various aspects of your project, including:
Unity supports the following scripting back ends:
Mono is supported on the following platforms:
IL2CPP is supported on all platforms.
Any platform not mentioned in the previous list of Mono-supporting platforms is IL2CPP-only. On platforms that support both back ends, Mono is the default.
Note: Scripting back end support can change between releases. For the latest information, refer to the platform-specific Player settings for your target platform and Unity version.
You can change the scripting back end Unity uses to build your application in one of two ways:
Through the Player SettingsSettings that let you set various player-specific options for the final game built by Unity. More info
See in Glossary menu in the Editor. Perform the following steps to change the scripting back end through the Player Settings menu:
You can also open the Player Settings menu from the Build Profiles window; go to File > Build Profiles and click on the Player Settings tab.
Through the Editor scripting API. Use the PlayerSettings.SetScriptingBackend property to change the scripting back end that Unity uses.
The C#/.NET API surface available for Mono and IL2CPP is nearly identical. Both scripting back ends use the same base class library and both support the available API compatibility levels. However, some restrictions specific to IL2CPP and certain AOT platforms apply. For more information, refer to IL2CPP restrictions.
The following table provides a side‑by‑side comparison of Mono and IL2CPP scripting back ends across key features:
| Feature | Mono | IL2CPP |
|---|---|---|
| Execution model | Just-in-time (JIT). | Ahead-of-time (AOT): C# to IL to C++ to native code |
| Platforms | Desktop and Android. | Widest support and required for iOS and most consoles. |
| Cross‑compilation toolchain | Minimal; JIT compiles managed assemblies as needed. | Requires C++ toolchain (Clang/MSVC), platform SDKs; longer build/link times. For more information, refer to Linux IL2CPP cross-compiler. |
| Build time | Faster iteration, smaller linking steps. | Slower (C++ codegen, compiling, and linking), larger generated codebases. |
| Startup time | Typically slower with JIT (warmup, JIT cost). | Typically faster (fully native, no JIT warmup). |
| Memory usage | Smaller code size with JIT | Larger native binaries; additional generated C++ and metadata |
| Exception handling | Managed exceptions via Mono runtime. | Managed semantics mapped to native via IL2CPP runtime support. |
| Reflection | Full reflection works, dynamic codegen supported. | Reflection works for existing metadata, but dynamic codegen has limits. System.Reflection.Emit and dynamic methods not supported. |
| Generics | Full support, JIT can specialize at runtime. | AOT uses ahead‑of‑time generic sharing and IL2CPP might need additional AOT hints to avoid missing method or type errors at runtime. For more information, refer to Generic types and methods. |
| Code stripping/linker | Managed linker, easier to keep symbols due to JIT. | More aggressive stripping, must annotate or configure to preserve reflected or dynamically loaded members. Use a link.xml file or [Preserve] attribute to keep types and methods alive. For more information, refer to Managed code stripping. |
Interop (P/Invoke) |
Standard P/Invoke, runtime resolves at load. |
Standard P/Invoke, names must match because AOT/native binary linkage is stricter. For more information, refer to Calling managed methods from native code. |
| Debugging (C#) | Fast domain reloads, edit‑and‑continue on platforms allowing JIT, informative managed stack traces by default. | Supported managed debugging, stack traces can be optionally enhanced. For more information, refer to IL2CPP managed stack traces. |
On platforms where you have a choice between IL2CPP and Mono, prefer IL2CPP if Player builds need faster startup, stricter platform compliance, and more predictable performance. Mono offers faster iteration in Editor and desktop development, faster build times, and is the only option if you need to use APIs not supported by IL2CPP.
Tip: Whichever scripting back end you choose, you can supplement it with the Burst compiler to compile select parts of your code to highly optimized native code. For more information, refer to Burst compilation.