Game Design – GameMaker 2

Making Games with GameMaker Studio (GM2)

Introduction

Before you can start designing games, you need to understand what the following words used in Game Maker mean:
rooms, backgrounds, objects, instances, actions, events, sprites, scripts

Game Maker games take place in rooms.  Think of a room as a level or scene for your game. Rooms have a background. This could be a plain colour or an image. You can move from room to room during your game.

In your room you put objects.  Objects are the things in your game such as balls, walls, characters etc.  Some objects just sit (like walls) and other objects move around and react to things that happen. There can be more than one instance of an object in a game.  For example we might have multiple instances (lots of monsters) of a monster object in a game.  When we talk about the monster object we mean all the instances of the monster in the game.  When we talk about the instance we mean one particular instance of the monster.

Things that happen are called events. An event could be the player pressing a key on the keyboard or it could be your game character colliding with a wall. When events happen, your objects can take actions.  The actions that could happen might be that an object bounces, the score is increased, a sound plays etc.

If you want to see the objects in your game, (and mostly you do) you need something to make them visible on the screen.  For this you need sprites. A sprite is an image that represents an object.  (Think of objects as being invisible like ghosts, and sprites are the clothing you put on them to be able to see them.)  You can used the sprites built into Game Maker or you can design your own.

You can add sounds into your game, either as background music or as effects.

If you want to extend the things your game can do then you will want scripts in your game.  Scripts are small pieces of code.

So remember, these are the main things in your game:
rooms: the scenes (levels) in which the objects live
backgrounds: the images used as background for the rooms
objects: the things in the game
instances: one particular occurrence of an object
sprites: images that are used to show the objects
sounds: these can be used in games, either as background music or as effects
scripts: small pieces of code that can be used to extend the possibilities of your game

GameMaker 2 Skills Level 1

GM2 – Skills 1

GM-Get Started View the following video.This video shows how to get started with GameMaker 2…

Read More

GameMaker 2 Challenges Level 1

GM2 – Skills 1

GM-Get Started View the following video.This video shows how to get started with GameMaker 2…

Read More