Web game maker: why this one is a download instead

Two different things get called a web game maker: one that runs in your browser, and one that makes games for browsers. Stage Engine is neither. It is a download, and the reason is what happens to a game once the browser is out of the way.

Say the mismatch out loud

You searched for a web game maker. Stage Engine is a desktop application for Mac and Windows that you download and install, and the game it produces runs locally on the copy of Godot bundled inside it. There is no browser editor, no browser preview, and no hosted link to send to a friend.

If the deliverable has to be a game that loads in a tab — an entry for a browser-only jam, something embedded on a site, something a school laptop can open without installing anything — this is the wrong tool. Web-native engines and frameworks exist and they are good at exactly that. Use one.

The rest of this page is for the person who searched for a browser tool out of habit rather than requirement, because that is most people. If nobody actually requires a tab, the trade is worth understanding before you make it.

What a browser costs a game

The tab is a sandbox with a memory ceiling, a download budget before anything appears on screen, and a graphics path that is a layer removed from the hardware. Every one of those is a good decision for the web and a real constraint on a game.

This is why browser tools quietly steer you toward small, flat scenes. Not because the people making them lack ambition, but because a world with real terrain, weather, water and a few hundred moving characters is not something a tab handles gracefully. The tool has to protect you from its own platform, and it does that by keeping the ceiling low enough that you do not hit it.

Run the same game locally and those limits mostly go away. Your machine's memory, your machine's framerate, no download before the first frame. That is the entire case for a desktop tool, and it only matters if the game you want is bigger than a tab.

What browser tools are genuinely better at

Distribution. A link is the best distribution mechanism ever invented for a small game. No install, no trust decision, no platform. If you want strangers to try your game on impulse, nothing beats it and this tool does not compete.

Access. A locked-down machine, a school computer, a work laptop, a Chromebook. If you cannot install software, a browser tool is not a preference, it is the only option available to you.

Speed to first thing on screen. Opening a tab is faster than downloading an application, and for an idea you want to test in twenty minutes that difference is real.

How Stage Engine works if you take the trade

You build the world by hand. Terrain, water, weather, buildings, characters, placed in a builder that behaves like a level editor. This is where most of your time goes and it is where your judgement is the product.

Director 1 writes the code — GDScript, inside your project, which is a real Godot project on your disk. You describe a behaviour, he writes it, you press play and the game runs locally, and then you say whether it is right. You are not asked to read the code. You are asked to have an opinion about the game, which is a different and more important job.

Building needs an internet connection, since Director 1, asset generation and world data all come over the network. Playing what you built does not. The download is free, there is a free plan, Indie is $10 a month and Pro is $50, and paid plans buy more usage rather than a different engine.

A rough way to choose

If your players will click a link, use a web tool. If your players will download a build, the ceiling on what you can make goes up a long way and you should take that.

If you genuinely do not know yet, note which decision is easier to reverse. The kind of game that suits a tab is generally small enough to remake elsewhere. A world you spent three months building does not fit into a tab afterwards, so pick the platform before the world, not after it.

Questions

Can Stage Engine export a browser game?
No. Games run locally on the copy of Godot bundled with the app, on Mac and Windows. A web build is not what this tool produces.
Is there a browser version of the editor?
No. It is a desktop app that you install. There is no online editor and no cloud workspace.
What if I cannot install software on my machine?
Then this is not usable for you, and a browser-based tool is the right choice rather than a compromise.
Why not just support both?
Because the tool is shaped around worlds that need to run locally to be worth building. Supporting a tab would mean designing for the tab's ceiling, which is the constraint we are avoiding.
Does building work offline then, since it is local?
No. Director 1, asset generation and world data come over the network, so building is online. Playing the finished game is not.
Do I need to code?
No. Director 1 writes the GDScript. You build the world and judge the result by playing it.