What are some ways to texture map a terrain?
Posted
by
ApocKalipsS
on Game Development
See other posts from Game Development
or by ApocKalipsS
Published on 2013-11-08T16:00:57Z
Indexed on
2013/11/08
22:18 UTC
Read the original article
Hit count: 209
I'm working with XNA on a 3D Game, and I'm trying to have a proper and nice environnement. I actually followed a tutorial to create a terrain from a heightmap. To texture it, I just apply a grass texture on it and tile it a number of times.
But what I want to do is to have a really realistic texturing, but also generate it automatically (for example if I want to use Perlin noise to generate a terrain and then texture it).
I already learned about multi-texturing, loading a map file with different colors for different textures, but I don't think this is really efficient, for instance for cliffs or very steep areas it will tile a texture badly as it's a view from the top. (Also, I don't know how I'll draw roads or dirt paths with that.)
I'm looking for an efficient solution to realistically texture mapping procedurally-generated terrain.
© Game Development or respective owner