DrawMeshNow() public static method

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.
return 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);
 }