Nobody should write a new engine for this. The engine is Godot.
The phrase AI game engine suggests somebody wrote a new engine with AI in it. That would be a bad idea. The engine here is Godot, and the AI is the layer that makes it usable without writing code.
Why not a new engine
An engine is twenty years of rendering, physics, audio, animation, import pipelines and platform export. Anybody starting one from scratch in order to attach an AI to it would spend a decade catching up to where open source already is, and the AI would not be any better for it.
Godot already exists, is open source, and ships real games. So the sensible thing is to build on it rather than beside it. Stage Engine bundles Godot and adds the layer on top.
The practical consequence is the one worth caring about: your project is a Godot project. Not an export from a proprietary format. Not a document only this app can open. A Godot project on your disk, which Godot opens.
What the AI layer actually is
Two things. Director 1, which writes GDScript into your project when you describe what should happen. And generation of assets and world data, which happens inside the project rather than as files you import afterwards.
That is it. There is no AI in the render loop, no model deciding physics, nothing running while your game is being played. The AI is a building tool, not a runtime.
This matters for what your game becomes. A game whose behaviour depends on a model responding at runtime is a game that needs a network connection and a bill to run. A game whose code was written by a model is just a game.
The world is not AI generated behind your back
The other half of the app is a builder, and it is where you construct the world with your hands. Terrain, water, weather, buildings, characters, light, placed by you.
There is no path where you describe a level and something invents it while you are not looking. That is deliberate. The world is the part you have taste about, and a tool that guesses at it produces something almost right, which is worse than something you made.
You are not expected to write code, and you are expected to have opinions. Those are compatible. Playing your own game and saying it is wrong is the loop the whole thing is built around.
What you install and what it costs
A desktop app for Mac and Windows. It runs your game locally on the bundled Godot, at your machine framerate. No streaming, no browser preview.
Building needs an internet connection, since Director 1 and world data 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 they buy more usage rather than a different engine. There is no team or enterprise tier.
What bundling Godot actually means
The copy of Godot that ships inside the app is the one your game runs on when you press play. There is no separate preview renderer and no approximation, so what you see while building is what the game is.
It also means you are not installing and configuring an engine yourself, which is a small thing for an experienced developer and a real barrier for everyone else.
And because the project is standard, an experienced developer can open it in their own Godot install and work on it there. Neither of those two people has to compromise for the other, which is unusual.
A note on what AI is not doing here
It is not deciding your design. It is not picking a genre for you from a list, because there is no list. It is not editing your world while you are elsewhere.
Those constraints are the reason the output can be trusted. A tool that changes things you did not ask about is a tool you have to audit, and auditing is the thing you were trying to avoid.
What you get instead is narrower and more useful: describe behaviour, get code; place the world, see the world. Two clear halves, and no third path where something happens quietly in between.
Questions
- Is this a new engine?
- No. The engine is Godot, open source, bundled with the app. Stage Engine is the layer on top.
- Does the AI run inside my finished game?
- No. The AI is a building tool. Your game is ordinary Godot code and runs on its own.
- Can I open the project in Godot directly?
- It is a Godot project, and Godot is open source.
- Is it free?
- The download is free and there is a free plan. Indie is $10 a month and Pro is $50 for more usage.
- Mac and Windows?
- Both ship. It is a desktop app.