Can someone take a look at this texture please?

I have a chunk based world, and I use texture atlas to texture the chunks. However, when the chunks are further, the white lines appear.

1

It seems that the texture is shrinking and unity starts pulling texture from further away than my designated area in the atlas. The area around the required texture in the atlas is white/whitish.

Is there an option to disable this feature?

Thank you!

Have you tried switching your filter mode to point on the texture?

Tried bilinear with a higher anisotropic setting?

Hello !

I have tackled the exact same issue in Unity a few months ago. You definitely don’t want to set the filter mode to “point” as its pixels will not get upsampled/downsampled with the frustum yielding a “visual” quality loss.

To avoid seeing the white lines, in the “Texture Type” select “Advanced” from the drop-down list. It will unlock extra parameters for your texture. Find the “Generate Mip-maps” checkbox, and uncheck it. The white lines disappear with no significant quality loss.

For further reading on texture sampling refer to this link.

Cheers !