rom Development to Build — Building in Unity

Jack Leavey
2 min readJun 9, 2022

When you play a videogame, you are playing what is referred to as a build. This is the end user experience package that the developers ship on the disc (or send to your device directly through a download.

Builds generally do not contain developer information or assets. This saves greatly on storage space, leading to faster read times and lower storage costs.

Creating a Build in Unity could not be easier! Let’s create a build for the example Space Shooter I have been using to teach basics.

To get to your build window: File> Build Settings.

A few things to make check when you’re making your build:

  1. Make sure all the scenes you want included are listed at the top of the window.
Just the Main Menu and the one level for me.

2. Make sure you are building for your intended audience. If you want to be able to download your project and play it on a Windows computer, the default setting will work.

You can build to anything so long as you download the packages from Unity.

You can also specify information about your build inside the Player Settings tab, like the program’s name, icon, resolution, etc.

Look around for option inside the Player Settings!

Then just build the game to a new folder location.

NOTE: Do NOT build inside of your project folder. Make a new location for builds.

Finally, go to where you built your game and run the .exe file and play your title!

--

--

Jack Leavey

I am a software engineer with years of experience branching into game development, specifically in Unity. Follow along for guides on creating game mechanics!