Painter

Start here

Getting started

What a run does, what the knobs mean, and how to make a map you actually want.

The problem with tile-by-tile maps

Battle maps need to be big. A single dungeon floor might span 20×20 tiles — that's 400 individual images stitched together. AI image generators can produce stunning individual tiles, but they have no idea what's next to them.

The result: visible seams, colour shifts between neighbours, roads that dead-end at tile borders, lighting that flips direction halfway across the page. The closer your players look, the worse it gets — and patching it by hand can eat a whole evening.

What the painter does about it

The painter generates tiles that see their neighbours. Each new tile receives edge context from already-rendered adjacent tiles, structural constraints from a map-wide layout, and a style reference that locks palette and texture character across the entire grid. A multi-tier validation pipeline catches errors before they propagate; failed tiles are regenerated with tighter constraints.

You get large-scale, stylistically consistent maps that look hand-made — generated tile by tile, with full structural awareness — instead of an obvious patchwork.

Four stages, in order

How to use the painter

  1. Open the map generator and pick a biome and grid size. Start with 3×3 to see a run end-to-end before scaling up.
  2. Optionally paint a seam — a river, road, or biome transition — over the canvas. The painter will continue it across tile boundaries instead of treating each tile in isolation.
  3. Pick a backend (Cloudflare Workers AI for fast/cheap, Modal for higher fidelity) and run.
  4. Watch the live tile grid: tiles flip from queued → generating → validated as the wave scheduler fans out from the seed.
  5. If a tile lands in the validation gate, it'll retry with tighter constraints automatically. Successful runs land in Run history.

Suggested reading order

Read these in order if you want to understand what each knob in the UI is doing. None of them are long.

  1. 1. Wave scheduling
  2. 2. Painted seams
  3. 3. Exterior anchor
  4. 4. Bootstrapped seeds
  5. 5. IP-Adapter + ControlNet
  6. 6. Differential diffusion
  7. 7. Tiled VAE & latent normalisation
  8. 8. Palette match
  9. 9. Seam diagnostics
  10. 10. Glossary