Looking for RPG Maker? This is a different kind of tool
RPG Maker is a specific piece of software with a thirty-year history and a very clear shape. Stage Engine is not it, and this page says plainly what the difference is so you can decide which one you actually want.
If you meant the software called RPG Maker
RPG Maker is a real product line, it is very good at one thing, and that thing is the tile-based 2D Japanese-style role-playing game. Grid maps, a database of items and skills, an event editor, a default battle system that works on day one. If that is the game in your head, RPG Maker will get you there faster than anything else, and you should use it.
It also has thirty years of tutorials, an enormous library of tilesets and sprites, and a community that has already solved whatever you are about to get stuck on. None of that is something a new tool can claim.
Stage Engine is a different shape. It is worth two minutes to know which shape you want before downloading either one.
The shape Stage Engine is
Stage Engine is a desktop app for Mac and Windows built for 3D worlds. Terrain, water, weather, a day-night cycle, characters that move around a place rather than across a grid. It is not tile-based and it does not ship a default battle system waiting to be reskinned.
The engine underneath is Godot, which is open source. Your project is a Godot project. That is the answer to the lock-in question that eventually occurs to everyone who has spent a year inside a closed editor.
Instead of an event editor, there is Director 1, which writes GDScript. You describe the behaviour and it writes the code inside your project. You do not open a script; you play the result and say whether it is right.
What you give up, said plainly
You give up the head start. RPG Maker hands you a working battle system, a working menu, a working save file and a map editor tuned for exactly one genre. Stage Engine hands you an engine and a way to build on it, which is more freedom and more empty space.
You give up the asset ecosystem. Decades of RPG Maker tilesets exist because the format has been stable for decades. There is no equivalent stock library here.
You also give up the offline case. Building in Stage Engine needs an internet connection, because Director 1, asset generation and world data all come over the network. Playing what you built does not, but building does.
What you get instead
A game that is not obviously made in a particular tool. The most recognisable thing about a tile-based RPG is that it is a tile-based RPG. When the world is built by hand in 3D and the systems are written for your specific design, the result does not have a house style to escape.
Performance that belongs to your machine. The game runs locally on the copy of Godot bundled with the app, at your framerate, with your memory. Nothing streams and nothing renders in a tab.
And a genre boundary you can cross. If the RPG turns out to want a driving section, or a base you defend, that is a conversation with Director 1 rather than a fight with a tool that only knows one genre.
The furniture nobody thinks about
A role-playing game needs a save system, a pause menu, an options screen, a way to remap a key, and a title screen. RPG Maker hands you all of that on the first day and you never think about it again. That is a genuine convenience and it is worth naming.
Here each of those is a request. Save the game at campfires. Let the player rebind movement. Add a settings screen with volume and mouse sensitivity. Director 1 writes them as GDScript in your project and you check them by using them.
The difference in practice is a couple of evenings, not a couple of weeks, and the result matches your game rather than the default. Whether that is worth the evenings depends entirely on how much your game looks like the default.
Who should pick which
Pick RPG Maker if you want a 2D JRPG, you like the grid, and you want to be building maps within the hour. That is a good, specific want and it is well served.
Pick Stage Engine if the game you keep imagining is a place you walk around in, and the reason you have not started is that you do not write code. The download is free, there is a free plan, and Indie is $10 a month if you need more usage.
Questions
- Is Stage Engine made by the RPG Maker people?
- No. It is unrelated software. This page exists because people searching for RPG Maker sometimes want a 3D tool and do not know one exists.
- Can it import RPG Maker projects?
- No. Stage Engine projects are Godot projects. There is no importer and the two formats have very little in common.
- Is there an event editor?
- No. Behaviour is written by Director 1 as GDScript in your project. You describe what should happen rather than assembling event pages.
- Can I make a 2D game with it?
- It is built for 3D worlds, and that is where it is strongest. If your game is firmly 2D and tile-based, RPG Maker is the better fit and it is worth saying so.
- Does Stage Engine run in a browser?
- No. It is downloaded and installed on Mac or Windows, and the game runs locally on the Godot copy that ships with it.