Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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.
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.

Changing the scripting back end

You can change the scripting back end Unity uses to build your application in one of two ways:
  • Through the
    Player Settings

    ?

    menu in the Editor. Perform the following steps to change the scripting back end through the Player Settings menu:
    1. Go to Edit >
      Project Settings

      ?

      .
    2. Click on the Player Settings button to open the Player settings for the current platform in the Inspector.
    3. Navigate to the Configuration section heading under the Other Settings sub-menu.
    4. Click on the
      Scripting Backend

      ?

      dropdown menu, then select Mono or
      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.
  • Through the Editor scripting API. Use the
    PlayerSettings.SetScriptingBackend
    property to change the scripting back end that Unity uses.

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 modelJust-in-time (JIT).Ahead-of-time (AOT): C# to IL to C++ to native code
PlatformsDesktop and Android.Widest support and required for iOS and most consoles.
Cross‑compilation toolchainMinimal; 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 timeFaster iteration, smaller linking steps.Slower (C++ codegen, compiling, and linking), larger generated codebases.
Startup timeTypically slower with JIT (warmup, JIT cost).Typically faster (fully native, no JIT warmup).
Memory usageSmaller code size with JITLarger native binaries; additional generated C++ and metadata
Exception handlingManaged exceptions via Mono runtime.Managed semantics mapped to native via IL2CPP runtime support.
ReflectionFull reflection works, dynamic codegen supported.Reflection works for existing metadata, but dynamic codegen has limits.
System.Reflection.Emit
and
dynamic
methods not supported.
GenericsFull 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/linkerManaged 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.

Additional resources