Version: Unity 6 Preview (6000.0)
Language : English
Environment and tools
Automated testing

Integrated development environment (IDE) support

An integrated development environment (IDE) is an application that combines a range of tools for developing software, typically including a code editor, code completion, code analysis and diagnostics, running tests, and debugging. Unity supports the following C# IDEs:

External script editor preference

The External Script Editor setting in the Preferences window determines which IDE Unity C# script files open in for editing. To change this setting, go to Unity > Preferences > External Tools > External Script Editor.

This setting is enough if all you want to do is open, view, or make simple edits to C# source files. A full IDE experience including code analysis and debugging typically requires additional plugins or extensions. Refer to the sections for each supported IDE below for more details.

Visual Studio (Windows)

Visual Studio is the recommended IDE for Unity on Windows and is available in several editions, including a free Community tier for individual use. It’s recommended to always use the latest version where possible.

Visual Studio configuration for debugging

In addition to your installation of Visual Studio, the full IDE experience including debugging Unity C# code requires:

For your Visual Studio IDE:

For your Unity Editor:

New installations of the Unity Editor on Windows include Visual Studio Community and the other debugging requirements listed above by default. If you’re using a pre-existing installation of Visual Studio or the Unity Editor, you might need to install or configure some of the items manually.

For more information on the debugging features of the Unity Editor, refer to Debug C# code in Unity.

For more information on using Visual Studio with Unity, refer to Using Visual Studio Tools for Unity

Visual Studio Code (Windows, macOS, Linux)

Visual Studio Code is the recommended free IDE for Unity projects on macOS and Linux. It’s recommended to always use the latest version where possible.

VS Code configuration for debugging

In addition to your installation of Visual Studio Code itself, the full IDE experience including debugging Unity C# code requires:

For your Visual Studio Code IDE:

For your Unity Editor:

New installations of the Unity Editor on macOS include Visual Studio Code and the other debugging requirements listed above by default. If you’re using a pre-existing installation of VS Code or the Unity Editor, you might need to install or configure some of the items manually.

Note: The Unity Visual Studio Code Editor package com.unity.ide.vscode is no longer supported and should not be used. The Visual Studio Editor package com.unity.ide.visualstudio now supports Visual Studio Code in addition to Visual Studio.

For more information on the debugging features of the Unity Editor, refer to Debug C# code in Unity.

For information on using VS Code with Unity, refer to the VS Code documentation on Unity Development with VS Code.

JetBrains Rider (Windows, macOS, Linux)

JetBrains Rider is a feature-rich, paid C# IDE with comprehensive C# language and debugging support. It’s recommended to always use latest version where possible.

Rider configuration for debugging

In addition to your installation of Rider itself, the full IDE experience including debugging Unity C# code requires:

For your Unity Editor:

For more information on the debugging features of the Unity Editor, refer to Debug C# code in Unity.

For more information on using JetBrains Rider with Unity, refer to Rider for Unity.

Additional resources

Environment and tools
Automated testing