There are “blocks” to build levels.
I’ve created a simple procedural texture and bake it to have an image texture for these 4 objects.
Then I want to use them to build a level.
So I’ve duplicated one of them and use array modifier (using other blocks as Caps)
Creating something like that:
I’ve tried mark the field “Merge” in array modifier in Blender.
Also applied the modifier and delete duplicated vertex.
But these lines are always there.
This looks like mipmap artifacts. Make sure you give all uv texture islands enough seam space, some look very close without gaps to the next island. When you look from afar Godot uses downsized and blurred texture versions, then uv islands that are too close mays bleed into one another.
t depends on the distance from which you look at the object, whether it looks good or bad.
Although it also looks bad up close if you use a very closed angle
I see the same problem in Godot, in Blender it’s fine. The artifacts are reduced when I reimport the albedo texture lossless or VRAM compressed with high Quality mode on.
Also make sure to import the normal map lossless as compression will distort the normal data.
Those settings help, but I’m not sure if there’s another root cause we don’t see yet. Maybe somebody else has an idea. I will fiddle around a bit more and let you know if I find something else.
Maybe also try to export a gltf file manually from Blender and play with the export settings.
These textures are procedural textures, and bake it, but these images are not “tileable textures”, the first part of the procedural texture doesnt match with the final part in the objects.
In Blender it seems to look good, but if you look very close there is a line:
Look here in the docs, per default right of the scene tab are asset import options. Select the texture in the file system dock, switch to import tab, set options and click on reimport.
What I found is when I change your texture in the generated material of your block mesh in Godot to one of my textures, the problem goes away. If I delete the texture in the material and only use albedo color, the problem is also gone. It seems it’s the texture somehow, after all. Maybe it’s the tiling seam as you suspected.
I’ve removed the normal map in blender, so now its only a plain color without the noise texture, but the problem persist…
Maybe I need to re-bake the textures without the normal map… becausa have some effect in the diffuse channel ¿? I’l try
EDIT: Nothing, with the baked texture the problem persists.
With other material with a plain color its ok…