For Godot 4.2+
This template has a main menu, options menus, pause menu, credits, scene loader, extra tools, and an example game scene.
Setup menus and accessibility features in about 15 minutes.
The core components can support a larger project, but the template was originally built to support smaller projects and game jams.
The base/
folder holds the core components of the menus application.
- Main Menu
- Options Menus
- Pause Menu
- Credits
- Loading Screen
- Opening Scene
- Persistent Settings
- Simple Config Interface
- Extensible Overlay Menus
- Keyboard/Mouse Support
- Gamepad Support
- UI Sound Controller
- Background Music Controller
The extras/
folder holds components that extend the core application.
- Win & Lose Menus
- Level Loaders
- Level Progress Manager
- Logging Scripts
- Script for Releasing on itch.io with butler
The examples/
folder contains an example project using inherited scenes from the base/
and extras/
.
- Example Game Scene
- Base Level Class
- Example Levels
- End Credits
- Additional Inherited Scenes:
- Game Options Menu w/ Reset button
- Master Options Menu w/ Game Options tab
- Main Menu w/ Animations
- Opening w/ Godot Logo
- Level Loading Screen
- Loading Screen w/ Shader Pre-caching
app_config.tscn
is set as the first autoload. It callsapp_settings.gd
to load all the configuration settings from the config file (if it exists) throughconfig.gd
.scene_loader.tscn
is set as the second autoload. It can load scenes in the background or with a loading screen (loading_screen.tscn
by default).opening.tscn
is a simple scene for fading in/out a few images at the start of the game. It then loads the next scene (main_menu.tscn
).main_menu.tscn
is where a player can start the game, change settings, watch credits, or quit. It can link to the path of a game scene to play, and the packed scene of an options menu to use.option_control.tscn
and its inherited scenes are used for most configurable options in the menus. They work withconfig.gd
to keep settings persistent between runs.credits.tscn
reads fromATTRIBUTION.md
to automatically generate the content for it's scrolling text label.- The
UISoundController
node automatically attaches sounds to buttons, tab bars, sliders, and line edits in the scene.project_ui_sound_controller.tscn
is an autload used to apply UI sounds project-wide. project_music_controller.tscn
is an autoload that keeps music playing between scenes. It detects music stream players as they are added to the scene tree, reparents them to itself, and blends the tracks.- The
PauseMenuController
node loads thepause_menu.tscn
when triggeringui-cancel
. game_ui.tscn
is a demo game scene that displays recognized action inputs, and features thePauseMenuController
node, theLevelLoader
node to load levels from a directory, andLevelListManager
to manage level progress and show menus in case of a win or loss.
This package is available as both a template and a plugin, meaning it can be used to start a new project, or added to an existing project.
When starting a new project:
- Go to the
Asset Library Projects
tab. - Search for "Maaack's Game Template".
- Click on the result to open the template details.
- Click to Download.
- Give the project a new name and destination.
- Click to Install & Edit.
- Continue with the New Project Instructions
When editing an existing project:
- Go to the
AssetLib
tab. - Search for "Maaack's Game Template Plugin".
- Click on the result to open the plugin details.
- Click to Download.
- Check that contents are getting installed to
addons/
and there are no conflicts. - Click to Install.
- Reload the project (you may see errors before you do this).
- Enable the plugin from the Project Settings > Plugins tab.
If it's enabled for the first time,- A dialogue window will appear asking to copy the example scenes out of
addons/
. - Another dialogue window will ask to update the project's main scene.
- A dialogue window will appear asking to copy the example scenes out of
- Continue with the Existing Project Instructions
- Download the latest release version from GitHub.
- Extract the contents of the archive.
- Move the
addons/maaacks_game_template
folder into your project'saddons/
folder. - Open/Reload the project.
- Enable the plugin from the Project Settings > Plugins tab.
If it's enabled for the first time,- A dialogue window will appear asking to copy the example scenes out of
addons/
. - Another dialogue window will ask to update the project's main scene.
- A dialogue window will appear asking to copy the example scenes out of
- Continue with the Existing Project Instructions
Users that want a minimal set of features can try Maaack's Menus Template or other options from the plugin suite.
Changes can be made directly to scenes and scripts outside of addons/
.
A copy of the examples/
directory is made outside of addons/
when the plugin is enabled for the first time. However, if this is skipped, it is recommended developers inherit from scenes they want to use, and save the inherited scene outside of addons/
. This avoids changes getting lost either from the package updating, or because of a .gitignore
.
These instructions assume starting with the entire contents of the project folder. This will be the case when cloning the repo, or starting from the template version in the Godot Asset Library.
These instructions assume starting with just the contents of addons/
. This will be the case when installing the plugin version in the Godot Asset Library.
Attribution
License
Godot Asset Library - Template
Godot Asset Library - Plugin