Adding collision to flat meshes

Google for “static mesh collision unreal”.
Doe not watch unreal 5 tuts, look at something ue4 or even UT2007 or so. Nowadays collision is made really easy, but it does not work for you. So you should see how it was done by hand.

Then (just in case) see what is convex and what concave.

Now with all that you have 3 choices:

  • export those terrain meshes, create collision by hand in something like blender

  • create blocking volumes in unreal then apply them to terrain as collision

  • use blender to extrude terrain in Z axis, add surfaces underneath it to make it closed, reduce all degenerated surfaces, lines and vertexes (ie. clean that mesh). Then split it into convex parts, export back to unreal. With convex mesh that has thickness, unreal should be able to do per poly collision.

Last point can also be done in unreal 5 with new mesh editing tools.

PS.
Small trick to make your life easier in case you choose blender/3d app solution (looks difficult but after initial learning is most accurate and least work).
So after importing move all those meshes to their proper locations in blender, set all of their pivots to 0,0,0. When splitting terrrain or adding thickness etc, watch that pivot stays in 0.0.0. Then export them all and snap to world orgin (ie. 0,0,0) in unreal. This way you skip whole mess with correctly positioning terrain after importing back.