No generator produces a platformer worth playing, and here is why

A generator can write the movement code, fill a level with platforms and produce art in minutes. What it cannot do is decide whether the third jump is fair. Stage Engine generates the first part and gives you real tools for the second.

What generation is genuinely good at

Code. A character controller with gravity, acceleration, air control, coyote time and input buffering is a well-understood piece of software that has been written ten thousand times. Having it produced in seconds instead of a fortnight is real value, and it is the largest single barrier for someone who does not program.

Content volume, up to a point. Filling a scene with props, laying out a rough grid of platforms, producing placeholder art so the level reads. This is scaffolding, and getting scaffolding for free is worth a lot.

Systems. Score, lives, checkpoints, menus, saving, a level select. Necessary, unexciting, and entirely writable.

What it is bad at, and will stay bad at

Difficulty. A generated level does not know that the player just learned the wall jump twenty seconds ago and needs one easy application of it before a hard one. It has no model of what the person holding the controller currently understands.

Rhythm. Good platforming sections have a cadence, a build and a release. Generated ones have uniform density, which is the same problem as a song with no dynamics.

Fairness. The difference between a jump that is tight and a jump that is unfair is a handful of pixels and cannot be seen from a description. It can only be found by playing it and failing at it, and then deciding whether the failure felt like your fault.

This is not a shortfall to be engineered away with a better model. Those judgements need someone who wants a particular experience to exist.

So the split is deliberate

Director 1 writes the GDScript inside your Godot project. You build the levels by hand in the builder, standing in the space, moving platforms and playing the result.

That is not a compromise, it is the correct allocation. The generated half is the half that is the same in every platformer. The hand-built half is the half that makes yours different from the other ten thousand.

And you are the judge throughout. Not writing the code has never meant not knowing when a jump feels wrong.

The tool itself

Stage Engine is a desktop app for Mac and Windows with Godot bundled inside it. It downloads and installs; there is no browser version. Your game runs locally when you press play, at your own framerate, which matters for a genre judged on input timing.

Building needs an internet connection, because generation and Director 1 come over the network. Playing what you built does not.

The download is free and there is a free plan. Indie is $10 a month and Pro is $50, and the paid plans buy more usage rather than a different set of features.

Where generated levels genuinely belong

There is one place procedural platformer levels work well, and it is worth naming: games where the level is meant to be disposable. Endless runners, roguelikes with short randomised rooms, daily challenge modes. There the player never expects an authored experience, and variety is the point.

Even then the pieces are usually authored. The good ones stitch together hand-made chunks with rules about which chunk can follow which, which gives you variety without the incoherence of pure generation.

That approach is entirely buildable here. You design the chunks by hand in the builder and describe the stitching rules; Director 1 writes the code that assembles them at runtime. It is a good example of the split this tool is built around.

Judge the output by playing, not by looking

A generated level looks plausible in a screenshot almost always. Platforms are spaced, there are no impossible gaps, the shape has variety. It is only when you play it that the flatness shows: nothing builds, nothing surprises, every section asks the same thing.

So do not evaluate generated content visually. Play it as though someone else had made it, and notice whether you were ever nervous, relieved or pleased. If the answer is no for three minutes straight, the level is not doing its job however tidy it looks.

That is also the fastest way to work out which parts of the generation are worth keeping. Usually the answer is the scaffolding and the systems, not the arrangement.

Questions

Will it generate a complete playable platformer?
It will generate the code and rough content fast. The level design that makes it worth playing is yours, built by hand.
Can it generate levels at all?
It can lay out and fill space quickly. Treat the output as a first pass to edit rather than a finished level.
Do I need to code?
No. Director 1 writes the GDScript in your project and revises it when you say what is wrong.
Where does my project live?
On your disk, as a normal Godot project. Godot is open source.
What does it cost?
Free to download with a free plan. Indie is $10 a month, Pro is $50.