Book Image

Gamemaker Essentials

4 (1)
Book Image

Gamemaker Essentials

4 (1)

Overview of this book

Table of Contents (16 chapters)

Global Game Settings


Every project in GameMaker has its own global settings. These settings include things for every export module, including Windows, Android, iOS, Linux, and so on. Things such as general options for texture groups and project information can all be changed in the Global Game Settings.

To open the Global Game Settings, double-click on the very last item on the resource tree that says Global Game Settings:

The Global Game Settings should then open, showing the General game settings tab:

From this tab, we can change the Game ID, which is a unique key code used to identify the game. We can also toggle on and off the Use New Audio Engine as well as Short-Circuit evaluations.

The new audio engine is a completely new engine introduced in GameMaker: Studio. It allows for positional audio and is much faster than the old engine.

Short-Circuit evaluations are used to make GameMaker leave an if statement as soon as something returns false. If we check multiple cases in a single if statement...