Due to the overwhelming response from the hitbox and hurtbox tutorial I posted, and due to a lot of questions from you folks about how to do this particular thing, I’m going to show you how to set up a basic combo system.
[Read More]
Object introspection (also called metadata or reflection) is a cool feature that gives users information about their objects and data types at run time. This means you can use information about an object in your favor to perform cool tricks.
Today, I would like to go over how to create effects in your games. We will be creating an effect object, controlling its behavior with a state machine, and using scripts to streamline the creation of these objects in game.
I will show you some simple AI concepts and how to set up different behaviors for your games. It may be better to stop thinking about AI as “intelligence” and start to think of it as a series of behaviors.
Today, the topic of discussion is object ownership. By assigning an owner to an object, which is usually another object, we can manage object interactions.
[Read More]
It’s me again, back with yet another GameMaker basics tutorial, this time about parenting and inheritance. You can save a lot of time by creating a parent enemy object, which has common variables and code that all of your enemies may need, and passing it down.
[Read More]
In this post, I will explain my process when debugging my games, and some tips to find bugs quickly and identify bottlenecks in your game. It’s a good idea for you to experiment with all these tools yourself and figure out ways to make your debugging experience easier and better.
In this post I will go over the basics of setting up a replay system and leave you with ideas on how to integrate it in your game and expand it.
I want to talk about something cool that I’m calling “orchestration." Object orchestration is the act of controlling objects from inside of another object. This is very useful for something like a “controller” object, which manages many things in your game.
Welcome to another GameMaker basics tutorial! Today we are going to talk about views which is the camera system in GameMaker. Views, like most things in GameMaker, have some tricky to understand variables and functions
[Read More]
Hello, and welcome to another GameMaker basics tutorial. Today, I want to talk to you about how to pause your game. It is a fairly simple process, but it can be a bit confusing if you are unfamiliar with certain GameMaker functions.
[Read More]