Version: 2022.1

Mesh.indexFormat

切换到手册
public Rendering.IndexFormat indexFormat ;

描述

网格索引缓冲区数据的格式。

索引缓冲区可以是 16 位(一个网格中最多支持 65535 个顶点)或 32 位(最多支持 40 亿个顶点)。 默认索引格式为 16 位,因为这种格式占用的内存和带宽较少。

请注意,不是所有平台上都能保证 GPU 支持 32 位索引;例如, 采用 Mali-400 GPU 的 Android 设备就不支持这些索引。在此类平台上使用 32 位索引时,会记录警告消息, 不会渲染网格。

Note: the maximum possible vertex index (for example, 0xFFFF for a 16 bit index format) might not be usable. Some graphics APIs and GPUs skip rendering triangles with maximum vertex indices.

更改 indexFormat 会将 subMeshCount 设置为 1 并清除索引缓冲区。

See Also: IndexFormat, ModelImporter.indexFormat, SetIndices, SetTriangles, SetIndexBufferParams, SetIndexBufferData, MeshData.