...

/

Build Game from a Template

Build Game from a Template

Learn how to build a game from a template, using custom settings and a simple script.

Now, you will work with a bigger example to learn the process of building a game. This game will have already been implemented and released as a specific version.

In this example, you will be using a slightly tweaked version of this original Firefox game, which can be played here.

Setting up the configuration file

The difference with this version is that you can create a configuration file that can alter the game’s visuals. You will inject the values into the game. This example will be based on two configurable values: a primaryColor and a secondaryColor. The game only has two colors and they should complement each other. You will have a game.json configuration file, which can be seen here:

Press + to interact
{
"primaryColor": "#fff",
"secondaryColor": "#000"
}

The primaryColor will be used to determine the color of the game’s objects, and the secondaryColor will be used to paint the background. Hence, you are empowering the game.json file to configure the game’s skin.

The directory structure for the example

The root of the /usr/src/app/examples/020 directory contains three directories and the new-reskin.js script that you will run to build a new release. The first directory, core, will contain the ...