Skip to content

Install the Editor

The Unity Editor is where you will assemble your game. This tutorial will use Unity 6.3 LTS (6000.3.12f1), but this should work on any version of Unity 6+.

  1. Open the Unity app.

  2. Navigate to the Installs tab on the left side.

  3. Click Install Editor on the right side.

  4. Install Unity 6.3 LTS under the tab Official Releases.

Version

Any official release of Unity 6 will work. The Unity Hub will recommend version 6.4 (6000.4.1f1), but this tutorial will use Unity 6.3 LTS (6000.3.12f1) since it is more stable and will be supported for longer.

GIF for installing Unity Editor

The program will ask you what modules you would like to have installed with the Unity editor.

  1. Ensure the Microsoft Visual Studio Community 2022 box is checked.

    Visual Studio installation checked box

    Every other checkbox that is not mentioned can be left untouched.

  2. Click Continue.

  3. Wait for Visual Studio to ask which Workloads you want to install with it.

  4. Scroll down and ensure that Game Development with Unity addon is checked under the Workloads tab.

    Game Development with Unity workload checked

  5. Press the install button.

  6. Wait for Editor and Visual Studio downloads to complete.

    Success

    Visual Studio installed successfully

  7. Close the Visual Studio Installer window.

Since you already have Visual Studio 2022 installed, Unity will not install it for you. However, you must check if you have the Game Development with Unity workload installed. This is an essential addon that will help you debug and test your game code.

  1. Open the Visual Studio Installer.

    The visual studio installer

  2. Click Modify for Visual Studio Community 2022.

  3. Scroll down and ensure the Game Development with Unity workload checkbox is checked.

    Game Development with Unity workload checked

  4. Press Modify if you had to check the checkbox.

  5. Close Visual Studio after the changes apply.

Success

When the install completes, you should see the editor in the Installs tab.

Editor in the Installs tab

Create a Project

Great! Now that you have the Editor and Visual Studio installed, you can begin creating your first Unity project which will be a simple platform game.

  1. Go to the Projects tab on the left side of your Unity Hub window.

  2. Click +New Project.

  3. Select the Universal 2D Core Template under the Core tab.

  4. Name your project.

  5. Choose project location.

  6. Click +Create Project.

    GIF for Creating a 2D Unity project

Success

You should now see the Unity Editor creating your project.

Unity Editor creating project loading bar

Once it loads, you will see the Unity Editor open up.

Conclusion

Great! You should now have the Unity Editor installed.

See below for what your screen should look like after completing this section:

Success

Image of the Unity Editor