Version: 2020.1
public int vertexCount ;

描述

子网格的索引缓冲区所使用的顶点数。

此函数与 firstVertex 一起定义子网格可能使用的顶点范围。 必须设置顶点数量,以使 firstVertex+vertexCount 包含索引缓冲区所引用的 整个顶点范围。例如,如果索引缓冲区包含顶点索引 5,6,100, 则 firstVertex 需要为 5vertexCount 需要为 96 (100-5+1)。

这些值对于任何基于 CPU 的网格处理(例如,动态批处理 或 CPU 蒙皮)都很重要。

boundsfirstVertexvertexCount 值由 Mesh.SetSubMesh 自动计算,除非 传递 MeshUpdateFlags.DontRecalculateBounds 标志。

另请参阅:firstVertex