DrawMeshNow() публичный статический Метод

Draw a mesh immediately.

public static DrawMeshNow ( Mesh mesh, Matrix4x4 matrix ) : void
mesh Mesh The Mesh to draw.
matrix Matrix4x4 Transformation matrix of the mesh (combines position, rotation and other transformations). Note that the mesh will not be displayed correctly if matrix has negative scale.
Результат void
Пример #1
0
 public static void DrawB(MeshHolder holder)
 {
     holder.meshB.vertices = holder.Vertices;
     holder.meshB.uv       = holder.UVs;
     holder.meshB.colors32 = holder.Colors;
     UnityGraphics.DrawMeshNow(holder.meshB, Matrix4x4.identity);
 }