AI isometric game maker: a camera decision, not an art style
Isometric used to mean drawing everything at a fixed angle forever. Building in real 3D and fixing the camera gets you the same look with none of that commitment.
Two ways to make an isometric game
The traditional way is 2D sprites drawn at a fixed angle, tiled onto a grid. It is a beautiful tradition and it is enormously laborious: every object needs art for every orientation, every new elevation needs new tiles, and the day you want to rotate the camera is the day you start again.
The other way is to build the world in 3D and point an orthographic camera at it from a fixed angle. What the player sees is isometric. What you are working with is a real space with real geometry.
Stage Engine does the second. The engine underneath is Godot and the world you build is a 3D world, so the isometric look is a camera setup rather than a constraint on every asset you will ever make.
What that changes day to day
Elevation stops being a problem. In a tile-based isometric project, multiple floors and slopes are where the art budget goes to die. In 3D, a hill is a hill and the camera renders it correctly from the angle you chose.
Lighting becomes real. Shadows fall properly, a lamp actually lights the corner it is in, and time of day is a setting rather than a second full set of art.
And you can change your mind. Decide the angle is slightly wrong, or that a rotating camera would help readability in dense scenes, and it is an adjustment rather than a redraw.
Building the world and writing the code
You build by hand in the builder: terrain, water, weather, buildings, props, characters. For isometric games this is the right way round, because readability from a fixed angle is judged by looking at it from that angle, which the builder lets you do continuously.
Director 1 writes the code. Click-to-move pathfinding, selection, a turn order, fog of war, inventory, whatever your game needs. You describe it and it writes GDScript into your project.
Isometric games have a specific recurring problem worth naming: things get hidden behind other things. Walls occluding the player, buildings blocking the tile you need. The usual solutions — fading obstructing geometry, cutting away walls between the camera and the player — are code, and code is the part you describe rather than write.
The genres this suits
Tactics games, where a fixed angle makes distance and elevation readable. City and colony builders, where you want to see a whole district at once. Dungeon crawlers. Anything where the player is directing rather than inhabiting.
The through line is that isometric is a legibility choice. It suits games about understanding a situation more than games about being in one.
Practical facts
Desktop app for Mac and Windows with Godot bundled inside it. The game runs locally on your machine, which is what makes a dense isometric city with real lighting practical rather than aspirational.
Building needs an internet connection because Director 1, asset generation and world data are online. Free download and free plan; Indie is $10 a month, Pro is $50.
Readability is the thing to test
The failure mode in this genre is a scene that looks good and cannot be parsed. The player cannot tell which tile is walkable, which object is interactive, or how high something is.
Test by looking at your scene the way a new player will: for two seconds, without knowing what anything is. If you cannot tell what is going on, more detail will not help and less will.
Height is the recurring problem. From a fixed angle, two things at different elevations can occupy the same screen position, and readable elevation usually needs a deliberate cue — a shadow, a marker, a change in lighting.
Questions
- Is this 2D isometric or 3D with an isometric camera?
- 3D with the camera fixed at an isometric angle. You get the look without drawing every object at every orientation.
- Can I rotate the camera?
- Yes, if you want to. That is one of the things building in 3D buys you.
- How do I stop buildings hiding the player?
- Describe the behaviour you want — fading geometry between camera and player, cut-away walls — and Director 1 writes it.
- Can I still use pixel art?
- The look is up to how you build and shade the world. The camera setup does not force a style either way.
- What does it cost?
- Free download and free plan. Indie $10 a month, Pro $50 for more usage.