Introduction to scripting back ends
Understand the available scripting backends and their effects on your project.
Read time 4 minutesLast updated 10 days ago
Scripting back end is the Unity term for the runtime technology that compiles and executes your C# scripts. 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:
- Build times and iteration speed.
- Runtime performance and memory.
- Platform support and requirements.
- Support for some .NET features such as reflection and dynamic code generation.
- Debugging and profiling experience.
Unity supports the following scripting back ends:
- Mono: An open-source implementation of the .NET Framework based on the ECMA standards for C# and the Common Language Infrastructure (CLI). Mono uses just-in-time (JIT) compilation to convert your C# code into machine code at runtime.
- IL2CPP: A Unity-developed scripting back end that converts your C# code and assemblies into C++ code, which is then compiled using a platform-native C++ compiler to produce a binary file for the target platform. IL2CPP uses ahead-of-time (AOT) compilation to convert your code before runtime.
Platform support
Mono is supported on the following platforms:
- Windows x86/x64/Arm64
- OSX x64/Arm64
- Linux x64
- Android Armv7
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.
Changing the scripting back end
You can change the scripting back end Unity uses to build your application in one of two ways:
-
Through themenu in the Editor. Perform the following steps to change the scripting back end through the Player Settings menu:Player Settings
?
- Go to Edit > .Project Settings
?
- Click on the Player Settings button to open the Player settings for the current platform in the Inspector.
- Navigate to the Configuration section heading under the Other Settings sub-menu.
- Click on the dropdown menu, then select Mono orScripting Backend
?
.IL2CPP?
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. - Go to Edit >
-
Through the Editor scripting API. Use theproperty to change the scripting back end that Unity uses.
PlayerSettings.SetScriptingBackend

The Configuration section of the Player settings
Scripting backends comparison
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. |
| 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 |
Interop ( | Standard | Standard |
| 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.