Strange plane import

Hi! I made a sort of terrain with Blender by starting with a plane, and when I import it in Unity it’s very bizarre…
The model in Blender:4265575--381163--upload_2019-2-28_14-38-39.png
The model imported in Unity:
4265575--381166--upload_2019-2-28_14-38-55.png
The same model in Unity but with a view from under:


I don’t understand why I view it like that…
Can someone help me please?

In a game engine, faces are one-sided, so are only visible from a single direction or the other. That’s why you can see some of them from above and some from below. In blender, you want to view the face normals and make sure they are all pointing upward. Flip the ones that aren’t.

2 Likes

Thank you, it worked by using CTRL + N in Blender!4265680--381193--upload_2019-2-28_15-14-27.png

Always face backface culling in a modeler.

this isn’t entirely true. You could say that in unity, the standard shader culls backfaces by default.

Other game engines, like Unreal, have a toggle for backface culling in the standard shader. As do realtime render engines like Marmoset Toolbag. You can do the same in Unity but you have to write the shader for it. So it’s not an absolute rule.

A few uses for double sided meshes are hair cards, thin clothing or fabrics.

3 Likes