AI survival game maker with real terrain and weather

A survival game is a hostile place with rules attached. Stage Engine lets you build the place by hand and have the rules written for you, running locally on Godot.

The place comes first

Survival games are the genre most dependent on their world. Hunger meters and crafting recipes are the mechanics people list, but the reason anyone plays is the feeling of being somewhere that does not care whether you make it to morning. That feeling comes from terrain, weather, distance and light, not from a UI bar.

So this is a genre where the hand-building matters most. In Stage Engine you place terrain, water and weather yourself, directly. You decide where the treeline breaks, how far the nearest shelter is from the river, and what the player can see from the ridge that will worry them.

That is design work with no shortcut. A world assembled without intent produces a survival game that is a chore rather than a tension, and players feel the difference immediately even if they describe it as boring.

The rules, written for you

Hunger, thirst, temperature, stamina and their interactions. Gathering and crafting with a recipe system that can grow. Inventory weight and its consequences. Day and night, and what changes at night. Shelter, fire, durability, disease, sleep. Save and load that survives being closed halfway through a storm.

Director 1 writes all of it as GDScript in your Godot project. You describe the rule and it exists. Then you play until you find the point where the game is being tedious rather than tense, and you say so, and it changes.

Survival balance is nearly all about rates. How fast the meter drains, how far apart the resources are, how long the night lasts. Those are numbers you can only judge by living inside them for twenty minutes.

Weather as a mechanic, not decoration

The builder treats weather as part of the world rather than a filter over it. Rain that changes what you can see, night that changes what you dare do, cold that turns a walk into a decision. Once weather is a real part of the world, the survival rules attached to it have something to bite on.

That is also why the game runs locally rather than in a browser. Terrain, weather and a populated world at a decent framerate are asking a lot, and the honest answer is that they need your actual hardware.

The practical shape

Stage Engine is a desktop app for Mac and Windows. You download and install it, it bundles Godot, and the game runs on your own machine. There is no streaming and no browser version, and the project is a normal Godot project.

Building needs an internet connection because Director 1, asset generation and world data come over the network. Playing what you built does not.

Free to download with a free plan. Indie is $10 a month, Pro is $50, both for more usage.

Tedium and tension look the same on paper

The permanent risk in this genre is that the systems designed to create pressure end up creating chores. A hunger meter that needs feeding every four minutes is not tension, it is an interruption, and the difference is invisible in the design document and obvious after twenty minutes of play.

The usual test is whether the mechanic ever changes a decision. If you always have enough food and topping up is automatic, the hunger system is doing nothing but asking for clicks. If running low occasionally makes you cut a trip short, it is doing its job.

Apply that to every meter you add. Most survival games are improved by having fewer systems tuned harder rather than more systems tuned gently, and the only way to tell which you have is to play a long session and notice what you resented.

Distance is your most useful mechanic

Almost every tense moment in a survival game is about being far from something. Far from shelter with the light going, far from water with a full pack, far from the base when the weather turns. That tension is created by geography rather than by systems, which is why the terrain work matters so much.

It also means you should walk your own world at player speed before deciding it is finished. Distances that look right from above feel completely different on foot, and that walk is where you discover the world is either too cramped to be dangerous or too large to be interesting.

Questions

How big can the world be?
Large worlds are the case the terrain tools are built for. The limit is your machine and how much of the world you fill with detail, which is the trade you get for running locally.
Can I have base building?
Yes. Placement, snapping, durability and resource cost are rules, and rules are what Director 1 writes.
Do I need to code?
No. You build the world and judge the game. The GDScript is written for you inside your project.
Is there an offline mode?
No. Building requires a connection. The game you have built runs locally without one.
What does it cost?
Free download, free plan, Indie at $10 a month, Pro at $50 for more usage.
How many survival meters should I have?
As few as change decisions. A meter that never alters what you do is a chore with a user interface.