Sponsored By

Deep Dive: Making the 2D action game tool Pixel Game Maker MV

Takuya Hatakeyama, director on Kadokawa's Pixel Game Maker MV, goes in-depth on the creation of the recently-released 2D action game tool.

Game Developer, Staff

December 11, 2019

9 Min Read

The Gamasutra Deep Dives are an ongoing series with the goal of shedding light on specific design, art, or technical features within a video game, in order to show how seemingly simple, fundamental design decisions aren't really that simple at all.

Check out earlier installments, including building an adaptive tech tree in Dawn of Man achieving seamless branching in Watch Dogs 2’s Invasion of Privacy missionsand creating the intricate level design of Dishonored 2's Clockwork Mansion.

WHO: Takuya Hatakeyama, director on Pixel Game Maker MV

Hello everyone, I’m Takuya Hatakeyama, the director of Pixel Game Maker MV (PGMMV). I have been working at Kadokawa in Tokyo for seven years now. My first project as director was for a smartphone game called Youkai Hyakkitan! Before that, I used to be part of a different team handling customer support for social games.

The PGMMV development team is made up of around 10 people with the core of the team being veteran developers who have been creating console games for over 20 years. They were involved in the “Maker” series games for the GBA, DS, 3DS etc. Others in the team were part of games such as the Derby Stallion series and the Seaman series.

The publisher, PLAYISM, is an indie game publisher based in Japan who have been supporting indie game development for over eight years now. They have published games such as NIGORO’s La-Mulana, Swery's D4: Dark Dreams Don’t Die, Suda 51’s The Silver Case and Studio Pixel’s Kero Blaster among others. They have recently released a Touhou Project spin-off title called Gensokyo Night Festival as well.

What: A tool for 2D action games

It is the latest title in the “Maker” series which many inexperienced, aspiring game developers first touch upon when beginning their careers. The main concept for this title is that it is a tool with which anyone can create a 2D action game. Both top-down and side scrolling games can be created without the need for programming. Local multiplayer is also supported, and games that are up to four players can be created.

Steel Sword Story

If you use the recently released “Remote Play Together” on Steam, you can even make your game an online multiplayer title. Regular 2D action games are not the only type of game you can create using this tool, either. Shooters and block-breaking games are among other genres that can be created in PGMMV.

A fine example of a game made in PGMMV is Steel Sword Story, which was released in June 2019. It is an orthodox side scrolling action game and was created by 8bits fanatics of 1001 Spikes fame.

Recently, pixel artist “ktwfc” has started developing a game called Dot Bounce with PGMMV. Other artists, who can create art but up until now did not have the means to create games, are also following suit.

PGMMV is quickly gaining recognition as a tool that can be used to swiftly give shape to a game concept. For example, the upcoming title by Sumo Digital, Pass The Punch, originally started out as a PGMMV creation in a Sumo Digital game jam which won first place. Sumo then went on to create the final title in Unity.

Archaeological action game La-Mulana 2’s boss battles have also been faithfully recreated in PGMMV. The recreated assets are included in the sample projects and can even be used freely in your own game.

La La-Mulana 2

Why

When starting out creating a game, the first and most significant obstacle that most people encounter is programming. The main concept for PGMMV was that users would be able to create games without the need for programming. But we also wanted it to be fully featured and give users the ability to create in-depth, detailed, and complex games as well.

Compared to the original Pixel Game Maker, there are now more actions and branch instructions available. Local multiplayer, a physics engine, and a particle system are all new additions which we believe are extremely useful when creating action games.

When creating playable characters, gimmicks, and game systems, objects must be created, and in order to simplify this process we added a flowchart UI to the object creation screen. To further improve ease of use, we have added a flowchart UI when creating game systems or character movements. The flowchart UI is made up of two parts, one for processing actions such as running and jumping, and the other for processing the conditional side of the actions. This allows even inexperienced users to create complex actions which would otherwise be very difficult without programming experience.

On the action side, for example, playable characters are able to move around the map by running or jumping. However, if you look at games on the market, there is a wide variety of running speeds and jump heights, so we added a function that lets you adjust these as much as possible simply by adjusting values.

For example, you can recreate a “Mario”-style jump by adjusting values to add the following properties:

  • Inertia

  • Jump height dependent on how hard the button press is

  • Can move a certain amount left or right during jump

  • Higher initial jump velocity compared to fall speed

  • Upward movement stops if head hits an object

For a Ghosts ‘n Goblins-style jump:

  • Constant speed

  • Jump height not dependent on button press

  • Cannot adjust landing point but can change direction character is facing

We have created a system in PGMMV where you simply have to check boxes and input values to adjust the jump style of your character.

You can then add further actions and transitions with links:

  • Jump while jumping (double jump)

  • Fire shots while jumping

  • Dash while moving through the air

  • Jump while dashing to increase jump distance

Using links, you can allow transitions from action to action depending on the object’s parameters. Take the double jump from before. Create a link which determines whether the A button is pressed down and link it to the jump action. Then create a link which determines whether the A button was pressed again and link that to the double jump action and implement it.

If you want the double jump to only be available after you obtain a certain item in-game, then you can add a conditional which only switches on when that item is obtained. In this way, the double jump will only become available to the player after the condition is met by obtaining the item.

There are a multitude of conditionals other than “input from controller” or “parameter/switch status” to apply to actions. For example “in contact with tile/object”, “in contact with hitbox”, “character is facing a certain direction” and “a set period of time has passed” are all conditionals that can be applied to actions to create a fully fleshed-out suite of actions in your game.

These features can be tried during the tutorial so new players should start by adjusting the values of their objects to get a grasp on how different values produce different results. The actions and links mentioned above are just a fraction of the features built into PGMMV, and depending on the combinations of actions and links you create, it is possible to build up some truly in-depth gameplay mechanics.

Personally, my favorite is the “execute object action” conditional which not only allows you to initiate the action of an object by bypassing other links and conditionals, but also allows you to apply the action of one object to another so you can use the same action for multiple objects.

Although I must say debugging this feature was not an easy task...

Level building also has some nice quality-of-life touches too. For every scene you can set the effect of gravity or set the scrolling to the direction/speed of your choice. Side scrollers, vertical scroll shooters or even multiplayer fighting game style levels can all be created in PGMMV, giving users the ability to create some complex and highly polished environments.  

Also, in order to allow the creation of smooth action animations, you can adjust animations frame by frame in regards to collision/hitbox detection, or fine tune movement and jump animations so the playable character moves exactly how you want in regards to controller input.

We hear people expressing concern over whether complex games can be created with no programming at all, but we believe we have created a tool where this is absolutely not the case. Bike racing games with complex physics, side scroller action games, vertical scrolling shooters, and multiplayer fighting games that are in-depth and of extremely high quality have all been successfully created using PGMMV.

With the possibility of games created in PGMMV being sold on the Nintendo Switch, we believe PGMMV to be a powerful tool for fledgling game creators and the indie game industry in general.

Results

As this was our first time creating a tool for creating action games, we did go through some hardships. In the initial stages of development, while thinking about the features that are required to create a tool that could make action games, we came up with the idea of recreating already-released action games to ascertain the most important features needed. During this process, there were features that we thought we needed, but in fact we found were unnecessary and vice versa, culminating in what we feel is the perfect toolkit for creating action games without programming knowledge.

One of the major hurdles we had to overcome during development concerned with collision detection of the playable character. If the movement speed of the character was too quick, then we found a lot of clipping was occurring with walls or other character models. In order to combat this issue, we tweaked things so this was less likely to happen and also added the aforementioned conditional processing aspect to give creators the ability to handle these kinds of issues should they occur while creating a game.

At the same time, we also created a few action games resembling titles such as Mario and Mega Man to determine which parameters needed to be tweaked in order to reproduce similar character movements. We even ran the games side by side to see how accurate our recreated movements were.

Even after the release of the early access version, our struggles continued as we found the program to be resource-heavy and unstable at times. However, we were happy to see users uploading gameplay clips and comments to social media and community forums. The projects that emerged were extremely well polished, to the point they were beyond what we imagined people would be creating with our tool. We took as much of the feedback as we could to further improve utility in the final version.

PGMMV was fully released in September, however, we are planning further updates to make it even more user-friendly. We are currently holding a Game Development Challenge and are looking forward to seeing everybody’s unique masterpieces created in PGMMV.

Daily news, dev blogs, and stories from Game Developer straight to your inbox

You May Also Like