public static Matrix4x4 modelview ;

Descripción

Gets or sets the modelview matrix.

The getter returns the product of the model and view matrices. The setter assigns an identity to the model matrix and the provided matrix to the view matrix.

Changing the model, view or projection matrices overrides the current rendering matrices. It is good practice to save and restore these matrices using GL.PushMatrix and GL.PopMatrix.