Online AI game maker: the AI is online, the app is on your machine

Two halves of the same tool sit in different places. Director 1 and asset generation are network services. The builder and the game are software on your computer. Knowing which is which explains most of how this works.

Where each half lives

The AI is a service. Director 1 runs over the network, as does asset generation and the world data the builder pulls in. None of that happens on your machine and none of it can happen without a connection. If your internet drops, building stops.

The builder and the engine are local. Stage Engine is an installed application for Mac and Windows, it ships with Godot inside it, and when you press play the game runs on your own hardware at your own framerate. Nothing is streamed to you.

So it is an online AI tool in a wrapper that is not a website. That combination is unusual enough to be worth stating plainly rather than letting the word "online" do work it should not.

Why the AI is not on your machine

Models good enough to write working game code do not fit on a laptop alongside a 3D engine that is trying to use the same GPU. Running both locally means one of them is starved, and it would be the game.

The usage is included in the plan rather than billed to you separately. You do not bring your own API key and you do not top up credits to have a conversation. Free, Indie at $10 a month, Pro at $50 — the plans differ in how much usage they carry, not in what the software can do.

What Director 1 is for, and what it is not

Director 1 writes code. GDScript, inside your Godot project, for whatever the game needs to do: movement, interaction, inventories, enemies, save systems, the lot. You describe the behaviour, it writes it, you play the result.

It does not build your world. That is deliberate. Placing a treeline, cutting a valley, deciding where the town sits — those are decisions your hands make faster than a sentence can carry, and you make them in the builder with manual controls.

And it does not decide whether the game is good. You play it and rule on it. Not writing code has nothing to do with not having taste, and the loop where you send work back is the normal one.

What you should expect from the first hour

Not a finished game. Anyone promising that is describing a demo. What you should expect is a project that exists, a world you have started shaping, and something moving in it that you asked for.

The second hour is usually where it gets interesting, because that is when you start disliking specifics and changing them. That is the work. It is real, and it is more fun than the first hour.

The practical shape

Download free for Mac and Windows. No browser version. Your project sits on your disk as a Godot project, and Godot is open source, so it opens without this app.

Building needs a connection. Playing does not. There is no offline mode and there will not be a pretend one.

Working with a service you do not control

A network dependency is a real one. Some days the connection is bad, and building will be slower or will stop. It is better to plan for that than to be surprised by it, and the easy plan is to keep some manual world building in reserve for those days, since the builder controls are local.

The other habit worth having is saving often and playing often, so that whatever state your project is in when something goes wrong is a state you understand. That is good practice regardless of who is writing the code.

Nothing about this makes an offline mode viable. It is a genuine dependency of the design rather than a gap waiting to be filled.

Questions

Is the builder a website?
No. It is installed software for Mac and Windows. Only the AI and asset generation are network services.
Do I need my own OpenAI key?
No. Usage is included in your plan. There is no key to supply and no credits to top up mid-session.
What happens if my connection drops while building?
Building stops until it comes back, because Director 1 and asset generation are network services. The game you already built still runs locally.
Which model writes the code?
Director 1 is the code writer. It is a managed service, so the model behind it is our problem rather than a setting you have to tune.
What do the paid plans change?
How much usage you get. Free, Indie at $10 a month and Pro at $50 all run the same engine and the same builder.