
Everyone has a region they gravitate towards without quite deciding to. Some players never leave the trees. Others will cross three continents to build on ice, or on sand, or on a ledge with nothing at all below it.
These seven questions are about the landscape you want outside the door: the weather you would rather argue with, the resource problem you enjoy solving, and the view you could look at for a hundred hours without getting bored. Answer for the world you would live in, not the one that is easiest to build in.
See all the outcomes this quiz can land on, and what each one means →
Most generated terrain begins as a height field: a grid where every point carries one number, its elevation. Fill that grid with pure random values and you get static, unwalkable and ugly. The fix is gradient noise, a technique developed by Ken Perlin in the early 1980s while he was working on computer graphics for film, which produces values that vary smoothly instead of jumping. He was later given a technical Academy Award for the work, and every rolling hillside you have walked across since owes it a debt.
Convincing terrain comes from layering. Run several passes of the same noise at doubling frequencies and halving strength, and you get broad ranges, foothills, ridges and surface roughness in a single field. Push the low values under a water level and you have a coastline. It is cheap, deterministic and repeatable from a seed, which is why a short string of digits can be shared and reproduce an entire planet exactly.
Biomes are usually not generated in any geographic sense; they are looked up. The standard approach borrows from ecology, where classification schemes have long plotted vegetation types against mean temperature and annual precipitation, producing a chart in which rainforest, savanna, desert, taiga and tundra each occupy their own region. Games generate two further noise fields, one standing in for temperature and one for moisture, sample both at each point and read the biome straight off the grid.
The hard part is the seams. Nobody wants a desert that stops in a straight line against a snowfield, so generators blend the edges, bias temperature by latitude and altitude, and add rivers afterwards by tracing paths downhill from high ground. What generation still struggles with is meaning. Noise can produce a thousand valleys but cannot decide that one of them ought to have a ruined bridge in it, which is why most large procedural worlds are hybrids, with handmade landmarks stamped onto machine-made ground.
Choosing snow over sand tells you something about what you find restful in a rendered world, which is genuinely interesting and also very small. Environmental psychologists have found broad regularities in landscape preference, with open ground, scattered trees and visible water scoring well across many cultures, but those are averages over large samples rather than verdicts about individuals. Your answers here reflect the last world you enjoyed at least as much as anything durable about you. Take the result as a suggestion for where to build next, not a statement of who you are.







