Tiles, Terrain, and Props — the Farming World
The highest-value doc on this shelf: Slynyrd's top-down series is nearly a farming-game art course by accident, and saint11's environment one-screens fill the gaps. Everything here feeds a 32×32 TileMapLayer directly.
The Slynyrd top-down trilogy (do these in order)#
- Pixelblog 20: Top Down Tiles (article) — grass, dirt, and water base tiles, seamless tiling, and the transition tiles between terrains — which is the actual skill; a lone grass tile is easy, grass meeting dirt is the craft. This maps one-to-one onto your tilled-soil mechanic.
- Pixelblog 21: Top Down Objects (article) — props: fences, rocks, pots... and crops. Readability against busy ground tiles, drop shadows, when to break the grid.
- Pixelblog 44: Top Down Trees (article) — trees that read from above without looking like broccoli.
saint11 one-screens to keep open while working#
- #Tiles — seamless tile rules in one image
- #Vegetation — grass, bushes, growth (three-parter)
- #Water — animated water without drawing every frame
- #Wood and #Rock — the two materials every farm is built from
Godot notes (where art meets engine)#
- Author tiles at exactly 32×32; your TileSet's tile size must match or Godot will scale and smear them.
- Seams show at runtime that don't show in the editor — test tiles in the game, camera moving, before making forty variants.
- Transition tiles multiply fast (grass→dirt needs edges and corners). Godot's terrain autotiling handles placement, but you draw the set — Pixelblog 20 shows the minimal set worth drawing.
Do this now#
Replace two placeholders: the grass tile and the tilled-soil tile, in your chosen palette, seamless. Then the transition between them. Farm looks real; motivation compounds.