How to prevent flickering on mesh boundaries?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By kix

I am generating my levels through GDScript by placing cube meshes next to each other. (Can’t use GridMap for other reasons which I can explain if needed).

var tile = cube.instance()
add_child(tile)
tile.global_translate(Vector3(x, 0, z))

They are all on the same Y plane, but different X/Z positions.

Unfortunately, playing through the level using a standard camera, there is flickering on the surfaces of the meshes. Here’s a video:

video

Some screenshots detailing the problem:

problem1
problem2
problem3

These lines usually appear for half a second and then go away, but creates a very jarring visual experience.

How can I fix this? Thanks for your help!

The issue is much more apparent with a DirectionalLight (I cannot reproduce it with no DirectionalLight and only ambient lighting). It appears regardless of whether the meshes are shaded or not.

kix | 2019-01-25 00:12

Issue still occurs on 3.1beta

kix | 2019-02-05 21:24