AI life sim maker: a place, a routine, and people who keep one
Life sims work when the world carries on without you. That is a simulation problem underneath a place problem, and Stage Engine splits the work along exactly that line.
The feeling the genre is chasing
A life sim succeeds when you come back after two in-game weeks away and things have moved. Someone got married. The crop failed. The shop changed hands. The player was not the cause of any of it, and that is what makes the world feel like a world.
Achieving that means every character needs somewhere to be at every hour, a reason to be there, and a memory of what happened. Multiply that by forty villagers and a calendar and you have a simulation that has to keep running whether or not the player is looking.
It is also why the genre is so hard for a first project. The visible part is charming and the invisible part is a scheduling system.
Describing the simulation
You describe the rules to Director 1 and it writes the GDScript into your Godot project. Daily schedules that vary by day and by weather. Relationship values that change with gifts and conversation and decay with neglect. Seasons that alter what grows and who is around. Events that fire on a date whether or not you are present.
These are the systems that eat months of a hand-coded project. They are also unusually well suited to being described, because the designer's version of them is already a set of rules in plain language.
And you will change them constantly. A villager routine that reads correctly on paper is often dull in play, and you only find that out by living in the town for a while.
The town has to be built by hand
This is the half no simulation can produce for you. The distance between the farm and the shop determines the shape of every day the player has. A town square that is ten metres too large feels lonely, and no rule you write will fix that.
You build it in the builder: terrain, water, weather, buildings, interiors, the paths people take. You walk it, and you move things because walking it told you something.
Stage Engine runs Godot locally on your own machine, which is what makes a populated town with weather and a day cycle a normal thing to attempt. That kind of world is precisely what browser-based tools have to avoid.
Characters are writing, not generation
The schedules can be systematised. The person cannot. What makes a life sim character stick is a specific voice and a specific problem, and both come from you writing them.
What Director 1 handles is the machinery around the writing: conversations that unlock, flags that remember, dialogue that changes after an event. The lines are yours.
A useful rule: build three characters properly rather than thirty vaguely. The thirty are a spreadsheet and the three are why anyone plays.
Practical facts
Desktop app for Mac and Windows with Godot bundled inside it. Building needs an internet connection because Director 1, asset generation and world data all come over the network. The finished game runs locally.
Free to download with a free plan. Indie is $10 a month and Pro is $50, buying more usage rather than more features.
Time is the setting that changes everything
How long a day lasts decides what the genre feels like. A short day makes every hour a resource and turns the game into planning. A long day makes it wandering.
Neither is wrong and picking one late is expensive, because every schedule, growth cycle and event was tuned against the old length.
Decide it early, play a week of in-game time at that speed, and only then start filling the calendar. It is the one number in this genre that everything else hangs from.
Questions
- Can it handle NPC daily schedules?
- Yes. Describe where people should be and when, and how weather or season changes it, and Director 1 writes the GDScript.
- Do I write the characters myself?
- Yes. The systems around dialogue are written for you; the voice of a character is the part that makes the game and it is yours.
- Can I do farming or seasons?
- Yes. Seasons, weather and growth cycles are systems you describe. Weather is part of the builder as well.
- Is it 3D?
- It is built around 3D and runs Godot locally, so a walkable town with weather is the natural shape.
- What does it cost?
- Free download and free plan. Indie $10 a month, Pro $50.