A platformer maker with no ceiling on it
Platformer makers usually give you a fixed set of behaviours and a wall behind them. Stage Engine gives you a real Godot project, a builder for the levels, and Director 1 to write whatever the game turns out to need.
The template trap
Search this genre and you find dozens of tools with a character, a jump, some enemies and a menu of behaviours. They are honest fun for an afternoon. The trouble arrives the moment your game wants something the menu does not have: a grappling hook, a gravity flip, an enemy that mimics your last three inputs.
At that point you are stuck, and stuck permanently, because the tool was built on a fixed list of possibilities. There is no advanced mode. The ceiling is not a skill curve, it is a wall.
Stage Engine has no such list. Behaviour is code, and code is written on demand, so the question is never whether the feature is supported.
What that means in practice
You describe the mechanic. Director 1 writes the GDScript inside your Godot project. If it is wrong you say what is wrong and it changes. The novelty of your idea has no bearing on whether it can be built, because nothing is being looked up in a catalogue.
That extends past mechanics. Menus, saves, checkpoints, a level select, a speedrun timer, an accessibility option that halves the game speed — all of it is just code someone has to write, and here that someone is not you.
The one thing you must supply is judgement. You play it, and you decide whether it is right. You will do that many times, and it is the real work.
Levels by hand, in a 3D builder
The builder is where you spend most of your time. Placing platforms, checking sight lines, standing where the player will stand and asking whether the next jump is legible before you make it.
Because Stage Engine is built for worlds with terrain, water and weather, the 3D end of the genre is well served. A platformer through a mountain pass with fog rolling in is an ordinary thing to build here, not an ambitious one.
Flat 2D platformers are possible too, since Godot underneath has a full 2D pipeline, though you will use fewer of the world tools and the advantage is smaller.
The download, and the honest limits
It is a desktop app for Mac and Windows. There is no browser version, no phone editor, no cloud workspace. Godot ships inside it and your game runs locally on your own hardware.
Building needs an internet connection because Director 1 and asset generation come over the network. Playing what you built does not, and there is no offline building mode.
Free to download with a free plan. Indie is $10 a month, Pro is $50. The paid plans buy more usage, not different capabilities, and there is no team or enterprise tier.
Start with one mechanic and one room
The most reliable way to begin is small and specific. One movement idea, one room that uses it, and a version you can play within the day. Not a level, not a character, not a menu. One room.
What that gets you is the only information that matters early: whether the idea is fun to do repeatedly. Most ideas are not, and finding out on day one is a gift rather than a setback. The ones that survive are worth the months.
From there it grows in the order that keeps you honest. Second room that varies the idea. Third that combines it with something. If you cannot make three interesting rooms out of a mechanic, it is a mechanic for a section rather than a game, and knowing that early is worth more than any amount of planning.
Where the art comes from, and when it should
Late. Placeholder shapes are not a compromise in this genre, they are the correct tool for as long as the movement is still changing. A grey box that jumps well tells you more than a beautiful character that does not.
When art does arrive it comes from generation, from the web, or from your own hand, and Stage Engine says which route it used rather than blurring it. Geometry built directly in the builder is often the right answer when the style is clean or when it is the honest fastest way to get you playing.
The exception is readability, which is a design problem wearing an art costume. If the player cannot tell which ledges are standable, that is not something to fix after the art pass. Fix it while everything is still boxes.
Questions
- Is there a list of supported mechanics?
- No, and that is deliberate. Mechanics are code that Director 1 writes on request rather than entries in a catalogue.
- What if my idea is unusual?
- Then it gets attempted. If something does not work you get told exactly what happened rather than being told it is unsupported.
- Do I need to know GDScript?
- No. You can read it if you like, since it is a normal Godot project, but nothing requires it.
- Mac or Windows?
- Both. Stage Engine ships on both platforms.
- What does it cost?
- Free download, free plan, Indie $10 a month, Pro $50.