A survival game maker where the weather is a mechanic

Survival is the genre where the environment is the antagonist. Cold, dark, distance and hunger do the work that enemies do elsewhere, which makes the world itself the most important thing you build.

The environment is the opponent

A survival game that leans on monsters is a shooter with a hunger bar. The genre works when the landscape is the threat: the temperature above the treeline, the distance back to shelter, the night that arrives before you expected it, the river you cannot cross with a full pack.

That means the terrain, the weather and the day-night cycle are not scenery. They are the difficulty curve, and they are the part of the game that has to be built by hand because no description of a valley tells you whether crossing it feels dangerous.

Stage Engine puts those in the builder. You shape terrain, draw the outline of a lake and let it fill, set weather and time of day, and place shelter and resources where they change the calculation. Then you walk it, at night, in the rain, and find out.

The loops underneath

Hunger, thirst, temperature, stamina, injury, durability, inventory weight, crafting, day count. Every survival game is some subset of those, and each one is code with a number attached.

Director 1 writes them as GDScript in your project. You say that cold drains stamina faster above a certain height, that a wet character warms slowly, that a stone axe lasts about eight trees, and it appears. Then you play and find out that eight trees is too many.

The numbers are the game. Whether the first night is survivable, whether food is scarce enough to force movement, whether crafting the second tier feels earned — none of those has a correct value, and all of them are found by playing rather than by planning.

Scarcity is a design problem, not a code problem

The hardest thing in a survival game is making resources scarce enough to matter and common enough not to be tedious. Too generous and there is no game. Too tight and the player spends the evening picking up sticks.

That balance shifts constantly as you add systems. A crafting tier that felt fine becomes trivial once you add a storage box. A day length that felt right becomes cruel once you add rain.

This is why cheap iteration matters more here than almost anywhere. When changing a spawn rate is a sentence rather than a code change you were dreading, you actually make the change, and the game gets tuned instead of merely finished.

Where it runs

Stage Engine is a desktop app for Mac and Windows with Godot bundled inside it. Press play and the game runs locally on your machine. A large world with weather, water and simulated animals is not something a browser tab handles well, which is exactly why survival games are rare in browser tools.

Your project is an ordinary Godot project on your own disk. Godot is open source, so the folder opens without this app and can be handed to anyone who works in it.

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

Darkness and sound do most of the work

Night in a survival game should be genuinely dark. The temptation is to raise the ambient light because you cannot see while testing, and the effect is that the most frightening third of the game becomes a slightly dim version of the day.

Sound is the other half. Footsteps that change with the surface, weather you can hear from indoors, an animal you hear before you see. These cost little and they do more for atmosphere than any amount of terrain detail.

Both are cheap to try and easy to judge. Play at night with the lights off in the actual room you are sitting in, and the answer will be obvious within a minute.

Where to start, and what it costs

Start with one biome, three resources and two survival meters, and play a full in-game week. If that week is interesting, the game exists. If it is not, adding crafting tiers will not save it, and finding that out in an evening is worth a great deal.

Free to download with a free plan, Indie at $10 a month, Pro at $50. The paid plans buy more usage rather than a different engine, and there is no team tier.

Questions

Does it do weather and day-night properly?
Weather, sky and time of day are part of what you set in the builder rather than something you bolt on afterwards, which is the right way round for this genre.
Can I do base building?
Placing and removing structures at runtime is code, so it is Director 1's half. Describe the placement and destruction rules you want and tune them by playing.
Can I make a survival horror game?
Yes. Darkness, sound and scarcity are the same tools pointed at a different feeling, and the tuning loop is the same one.
Do I need to write code?
No. Director 1 writes the GDScript into your project. You build the world and judge whether the first night is hard enough.
Does it work offline?
Playing does. Building does not, because the AI, asset generation and world data all come over the network.