Chunk Texturing Problem

Hi. Im doing with unity a simple pseudorandom terrain generator with chunk. Texturing script of the chunks is done but i don’t like texture connections between chunk and chunk… Could be the problem attribuited to the normales of the mesh? An image :

Thanks in advance :smile:

Try some different texture import settings. That looks like a familiar problem often solved at that level. If none of the changes you can make there disappear that seam, then you’ve narrowed it down to probable floating point imprecision during some aspect of mesh generation.

Wait, is this a Unity Terrain? There are several additional steps to ensure seamless terrain joining, including neighbor assignment and flushing. See here: Unity - Scripting API: Terrain

Let us know how this works out, best of luck,

First of all … Thanks for your reply :slight_smile:

I tryied all combination of texture import settings but i didn’t fix that. The script generate some chunks. Foreach chunks, an other script build the mesh, and based on height, the script build the texture to applicate at the mesh (sorry for bad english). Could be the problem attribuited to the mesh build script?

Thanks.

Up! The script of chunk generation contains the PlaneScript at http://wiki.unity3d.com/index.php/ProceduralPrimitives with custom height.