-
Notifications
You must be signed in to change notification settings - Fork 261
Building your game
The first step to build your game is to create a scene. If you haven't followed the Getting Started guide, we encourage you to do so.
For next steps, we will use the scene created in the Getting Started guide.
Before trying to build your project, you should configure it to your needs. For this, let's open the Project Settings
window.
As you can see, you can configure several aspect of your project, from physics, window to rendering settings.
Every project made with Overload is composed of an .ovproject
file. This file is a simple INI file (key=value
), containing all the settings of your project. Modifying and saving your settings in the Project Settings will modify your .ovproject
file content.
As it is possible to setup your project by editing the .ovproject
file, it is recommended to configure it via the Project Settings window.
For this guide, we will only describe the most important settings:
Setting | Description |
---|---|
Scene Management: Start Scene | Defines the scene that should get loaded when launching your game |
Windowing: Fullscreen | Set this to true if you want your game to startup in fullscreen mode |
Windowing: Resolution | Defines the size of the game window. When fullscreen is enabled, this setting will defines the render resolution |
Build: Development build | Enabling this option will launch your game in Debug mode (Less-optimized but debuggable with a built-in profiler). If you've compiled Overload from sources, make sure OvGame has been compiled in Debug and Release modes to launch your game in all scenarios (Development build or Release build) |
In our case, Overload has been compiled from sources in Debug
and Release
mode, thus, "Development build" option can be toggled on or off. If you are using an Overload release, you should be able to use both options.
Let's toggle the "Development build" option on for now (It should be on by default).
The other setting we will change here is the "Start Scene". We will simply have to drag and drop our saved scene from the Asset Browser to the "Start Scene" field.
Click apply, and voilà, you should be good to go for your first build.
Let's now heads to the menu bar, and click onto "Build". There are multiple options here.
Option | Description |
---|---|
Build Game | Build your game at the specified location on disk |
Build Game and run | Build your game at the specified location on disk and launch it |
Temporary build | Build your game in a temporary folder (%appdata%\OverloadTech\OvEditor\TempBuild\ ) and launch it. This option is the best way to try your game quickly |
We will use the "Temporary build" option as it is the quickest way to try our game.
If the build failed (Watch the console for logs), make sure:
- You are using an Overload release OR you have compiled the right version of
OvGame
(Debug mode for this guide) - You haven't modified any other setting
- The "Start Scene" is correctly setup
If the build worked, heads to the next section!
If you've followed the guide, you should have your game in a standalone executable, in debug mode. You should see something similar to:
As you can see, building a game in development mode will automatically displays the profiler. The profiler is a useful tool to identify bottlenecks in your game. In my case, [Post-Update]
is taking most of frame time, which is ok because the game is setup to use vertical synchronisation (vsync) which limits your game framerate to your monitor refresh rate. You can toggle the overlay by pressing F12
.
Let's now try a release build for our game. Simply uncheck the "Development build" option and click "Apply". As mentionned before, if you are using Overload from sources, makes sure OvGame
is compiled in Release
mode for this "Non-Development build".
Click again onto "Temporary Build" from the Build menu, and notice how smooth your game is!
There is no more profiler attached to your game and the executable is running in optimized mode. You still can press F12
to display the FPS counter.