An AI game maker for indie devs who would rather design than plumb
Indie work is mostly unglamorous systems code between the parts you actually wanted to make. Stage Engine hands the systems code to Director 1 and leaves you the world and the judgement.
The economics of a small team
The constraint on an indie project is almost never ambition. It is that two people have to be the programmer, the level designer, the artist, the audio person and whoever answers the email, and the programmer half eats the calendar.
A lot of that programming is not interesting. It is the fifth inventory system of your career, the save file, the settings menu, the controller remapping. It has to exist, it takes weeks, and shipping it well earns you nothing a player will notice.
Stage Engine moves that work. You describe the system, Director 1 writes the GDScript in your project, and you get back to the part with your name on it.
It is a Godot project, not a walled garden
This matters more to someone shipping than to someone playing. The output is a real Godot project on your disk — scenes, nodes, scripts. Godot is open source. If you already know it, everything is where you expect.
That means version control works normally, your existing Godot knowledge transfers, and there is no format that stops being readable if a company changes direction. For anyone who has been burned by a middleware sunset, that is not a small thing.
It also means you can open the scripts and edit them. Most people using this will not. Someone who already writes GDScript absolutely can, and nothing about the tool is designed to stop you.
Where it will not help you
It does not do art direction. It does not know what your game should feel like. It does not do the marketing, the store page, the trailer or the six months of wishlists that decide whether anyone plays it.
It also does not replace a programmer on a project that needs deep, specific engine work — a bespoke renderer, an unusual netcode topology, hard performance work on a shipping build. It writes game code, well and quickly, and that is a different job from engine architecture.
And it needs an internet connection to build. Director 1, asset generation and world data are online. The build you produce runs locally, so playtesting and shipping do not.
Building the world by hand
The other half of the app is a builder where you place terrain, water, weather, structures and characters directly. For someone who has done level design, this is the familiar half and it is deliberately not a chat interface.
The reason is the same reason you never described a level to a colleague instead of blocking it out. Space is judged with your eyes from where the player stands, and there is no prompt that shortens that.
Generation feeds into it — terrain, assets, world data all come from generation rather than a fixed library — but the arrangement is yours.
Cost
Free to download with a free plan. Indie is $10 a month and Pro is $50. Paid plans buy more usage, not features held back.
There is no seat pricing and no studio tier. It is a desktop app for Mac and Windows, licensed per person, and a two-person team is two accounts.
How this changes the schedule
It does not make a two-year project a two-month one, and anyone claiming that is selling something. What it changes is the ratio. The weeks that would have gone on systems plumbing go on world, feel and iteration instead.
It also changes what you are willing to try. When a system costs a week, you build one version and defend it. When it costs an afternoon, you build three and play them, and the third one is usually better than the one you would have defended.
That is the honest pitch: not faster, but more attempts per calendar month at the part of the game that decides whether anyone finishes it.
Questions
- Can I use my existing Godot knowledge?
- Yes. The project is a normal Godot project and the code is normal GDScript. Nothing is hidden behind a proprietary format.
- Can I edit the generated code?
- Yes. Open the scripts and change them. Most people never do, but the door is not locked.
- Is there a team plan?
- No. It is a desktop app licensed per person — Free, Indie at $10 a month, or Pro at $50. Two people means two accounts.
- Will it handle deep engine work?
- It writes game code. Bespoke rendering, unusual netcode or hard optimisation on a shipping build are still a programmer's job.
- Does it need to be online?
- To build, yes. The game you built runs locally on the bundled Godot, so playtesting does not.