By flipping the camera matrix int the x-axis the mesh normals of all object will be inverted!
how can i tell the matrix to avoid inverting the mesh normals? i use the following code:
Matrix4x4 mat = Camera.main.projectionMatrix;
mat *= Matrix4x4.Scale(new Vector3(-1, 1, 1));
Camera.main.projectionMatrix = mat;