Search Unity

mesh not visible upon rotation

Discussion in 'Getting Started' started by mcyber4, Dec 7, 2019.

  1. mcyber4

    mcyber4

    Joined:
    Oct 24, 2019
    Posts:
    14
    HI
    my mesh is not always visible. When I turn head(cam) it's not visible anymore until I turn back.
    Thanks
     
  2. Bill_Martini

    Bill_Martini

    Joined:
    Apr 19, 2016
    Posts:
    445
    This sounds like a backface culling thing. All meshes are rendered as single face.

    You have three options; Sandwich two meshes back to back, find a two sided shader to render the back side or, add a script on object to rotate to always face the camera. The last option may not be appropriate in many applications.