Online 3D game makers, and why this one installs

This is not an in-browser 3D game maker. It is a desktop app for Mac and Windows, and that is the single decision that lets a 3D world be more than a small grey room.

The thing you searched for, answered directly

You wanted something that runs in a tab. Stage Engine does not. It is downloaded and installed on Mac or Windows, and your project sits on your own disk.

If installing is impossible on your machine — a school laptop, a managed work device — this is not going to work for you, and it is better to know that in the first paragraph than after signing up.

If installing is merely inconvenient, read on, because in 3D specifically the download is doing something you can measure.

Why 3D punishes the browser more than 2D does

A browser tab is a constrained environment on purpose. It gets a share of the GPU, a memory ceiling, and a graphics API that is a subset of what the machine can do. For a flat 2D scene none of that bites. For 3D it bites immediately.

You see the consequence in the shape of the games these tools produce: small rooms, short draw distances, low object counts, simple lighting, no weather. Not because the people making them wanted that, but because it is what fits.

Stage Engine ships Godot inside the app and runs your game natively. Terrain with real distance, water, weather, and a scene with a few hundred things in it are the ordinary case rather than the thing that makes the preview stutter.

What you give up by not being online

Honestly: some real conveniences. There is no link you can send someone so they can open your project in a tab. There is no zero-install start. If you move between three machines, you install on three machines.

What you do not give up is your project. It is a normal Godot project folder on your disk, which you can copy, back up, or open in Godot directly. Browser tools usually hold the project on their server in their format, and that dependency is permanent.

None of that argues that browser tools are badly made. They are solving a different problem, and solving it inside constraints they did not choose. The constraint is the tab, and the tab is not negotiable for anyone.

Still an online product in one sense

Building needs the network. Director 1 writes your code over the network, asset generation runs over the network, and world data comes over the network. Without a connection you cannot build.

Playing what you built does not need the network, because the game is already on your machine running on the bundled Godot. So the split is: connected to build, local to play. That is the reverse of the browser arrangement, where the tab is required for both.

Who should still use a browser tool

People on locked-down machines. People whose 3D idea genuinely is a single small room and who want it playable at a link this afternoon. People teaching a class where installing on thirty machines is the blocker.

Those are real cases and we are not the answer to them. If your 3D game has a horizon in it, the download is the reason it can.

The specific things a tab cannot do

It helps to be concrete rather than hand-waving about performance. A browser game gets a memory ceiling well below what your machine has, which caps how much terrain and how many textures can be resident. It gets a graphics API that is a subset of the native one, which limits the lighting and post-processing available. And it shares the GPU with every other tab and with the browser itself.

The visible consequences are draw distance, object count and lighting quality. Those three things are most of what makes a 3D world feel like a place rather than a diorama. A tool that cannot afford them will steer you, gently and without ever saying so, toward small enclosed scenes.

Running natively removes the ceiling but does not remove the work. Your machine still has limits and a badly built world will still run badly. The difference is that the limit is yours to push against rather than a wall someone else put at two hundred metres.

That is the entire argument for the download, stated as plainly as it can be. If it does not apply to the game you want, use the tab.

Questions

Is there a web version planned?
No. The game runs on the bundled copy of Godot locally, and that is the design rather than a stage on the way to a web app.
Can I preview my game in a browser?
No. There is no browser preview and no streaming. Play happens in a window on your own machine.
Which operating systems are supported?
Mac and Windows. Both ship.
Do I need to be online?
To build, yes. Director 1 and asset generation both come over the network. To play a game you already built, no.
Is it free?
The download is free and there is a free plan. Indie is $10 a month and Pro is $50.
Can I share a link so someone can try my game?
Not from the tool itself. What you have is a Godot project you can export and distribute yourself, which is a different and more permanent thing than a preview link.