What kind of games you can make with Stage Engine
Stage Engine is shaped for worlds you move around in. Here is what that means in practice, what it is bad at, and what the process of making one actually looks like.
The shape it is built for
Stage Engine is at its best on games where the place is the point. A valley you walk across. A town with weather and a day cycle. An island with things living on it that do not stop existing when you look away. Terrain, water, sky and populated space are the default case rather than an advanced feature you graduate to.
That is a consequence of running locally. The app is a desktop application for Mac and Windows with Godot inside it, so when you press play the game uses your machine's GPU and memory. A world with real terrain, weather and a few hundred simulated characters is a reasonable thing to attempt, in a way it simply is not in a browser tab.
Within that shape, genre is open. An exploration game, a survival loop, a horror game built on darkness and sound, a slow farming game, a first-person game about walking through somewhere and finding out what happened. None of those are templates. They are what falls out of building a place and then deciding what happens in it.
What it is not good at
Tight 2D action. A precise platformer or a bullet hell lives or dies on frame-level sprite control, and there are 2D-first tools whose entire pipeline is built around that. Use one of those.
Games whose delivery is the browser. This produces a local Godot project and is built around playing it on your machine. If the plan is a link people click in a group chat, a web-first tool is the honest answer.
Anything on a phone. Stage Engine runs on Mac and Windows desktops. It is not a mobile authoring tool and there is no tablet version.
How a project actually goes
You start with a place rather than a design document. Raise ground, cut a valley, put water in it, set the weather, put something in the world that moves. This part is done by hand, in a builder that behaves like a level editor, because taste is the input and describing a hillside in a sentence is slower than shaping one.
Then you say what should happen. The character can climb short ledges. The animals scatter when you get close. It gets dark at eight and things change when it does. Director 1 writes the GDScript for that, inside your project, where you can see it.
Then you play it and most of it is wrong. The valley is too wide, the night is too long, the climbing feels bad. You say so and it changes. That loop is the work. Not writing the code does not mean not having an opinion about the game, and the opinion is the part only you can supply.
What you end up owning
A real Godot project in a folder on your disk. Godot is open source, so the thing you made does not depend on this app continuing to exist, and it does not depend on a subscription. You can open it elsewhere, keep working on it elsewhere, and ship it the way any Godot game ships.
Building needs an internet connection, because Director 1, asset generation and world data all come over the network. Playing what you built does not. Those are different things and it is worth keeping them apart when you plan.
The download is free, and there is a free plan. Indie is $10 a month, Pro is $50, and what they buy is more usage rather than a different engine.
Questions
- What genres does it support?
- There is no genre list. You build a world and describe what happens in it, so the genre is whatever those two things add up to. It suits games where the place matters more than frame-perfect 2D control.
- Can I make a 2D game?
- Godot handles 2D well, but Stage Engine's centre of gravity is 3D worlds. For a precise 2D action game, a 2D-first tool will serve you better.
- Can I sell what I make?
- It is your Godot project. There is no revenue share and no royalty in the pricing.
- How big can a world be?
- It runs on your machine, so the limit is your machine rather than a server budget somebody else is paying.
- Do I need to know how to code?
- No. Director 1 writes the code. You build the world and judge the result.