Voice to game: what talking can and cannot build

There is no voice mode here, and dictating into a text field is the closest thing. That is less of a loss than it sounds, because speech is genuinely good at describing behaviour and genuinely bad at placing a building on a ridge.

The honest state of it

Stage Engine does not ship voice input. There is no microphone button and no spoken conversation with the app. If you came here expecting to talk to a game engine and watch a game appear, that is not what this is.

What does work is your operating system's own dictation. macOS and Windows both let you speak into any text field, and describing a behaviour to Director 1 happens in a text field. If typing is slow or painful for you, that route is available and it is the same route you would use for email.

Everything below is about which parts of making a game speech is actually suited to, because that turns out to be the more interesting question than whether a microphone icon exists.

Speech is good at behaviour

Rules and reactions are naturally spoken things. "When the player runs out of torches the wolves stop keeping their distance." That is one breath, it is unambiguous, and writing the code for it would take an afternoon.

Director 1 takes exactly that kind of description and writes the GDScript inside your project. You do not read the code. You play the game and say whether the wolves behave the way you meant, and if they do not you say what was wrong.

Speaking also tends to make people more specific, oddly. Typed instructions get compressed into "make the AI better". Spoken ones drift toward the story of what happened: "I stood behind the wall and they just queued up in the doorway". That second version is much easier to act on.

Speech is bad at space

Try dictating the position of a watchtower. You will end up saying something like "on the ridge, north of the lake, angled a bit so you can see it from the path" — thirty words for a decision your hand makes in two seconds by dragging it, and it still will not land where you meant.

This is why the world in Stage Engine is built by hand. Terrain, water, weather, buildings and characters go where you put them, in a builder that behaves like a level editor. Not because voice was too hard to implement, but because for spatial work every kind of description is a worse instrument than a pointer.

The same applies to taste. How dense a forest should be, how long a corridor should feel, whether a room reads as abandoned. Those are judgements made by looking at the thing, and no phrasing shortcut exists.

What the loop actually feels like

You build a place. You ask for a behaviour. You press play and the game runs locally on your machine, because Godot ships inside the app. You notice something is wrong, you go back, you say what.

That last step is where you matter most. Not writing the code has nothing to do with not knowing what is good — years of playing games leaves you with a well calibrated sense of when something is off, even when you cannot name the cause. Naming the cause is the part being handed over.

Handing a build back is the normal way this works, not a failure. Nobody expects you to accept the first version of anything.

Practicalities

Stage Engine is a desktop app for Mac and Windows. You download and install it, and what you make is a real Godot project on your own disk rather than a file only one tool can open.

Building needs an internet connection because Director 1, asset generation and world data all come over the network. Playing the game you already built does not. If you rely on dictation, note that your system's dictation may have its own network requirement depending on how it is configured.

The download is free and there is a free plan. Indie is $10 a month and Pro is $50, and the paid plans buy more usage rather than a different engine.

Questions

Is there a voice mode?
No. Stage Engine has no built-in speech input. Descriptions to Director 1 are typed, and your operating system's dictation works in a text field the same way it does elsewhere.
Can I build a whole game by talking?
No, and no tool that claims it will give you the world you had in mind. Behaviour can be described in words. The world is placed by hand because that is faster and more precise.
Is this usable if typing is difficult for me?
The written half is short — a sentence or two per request — and dictation covers it. The building half needs a pointer, so consider whether that part works for you before committing time.
Do I need to know how to code?
No. Director 1 writes the GDScript in your project and you judge the result by playing it.
Where does the game run?
Locally, on the copy of Godot bundled with the app. There is no streaming and no browser preview.