Version: 2020.3
LanguageEnglish
  • C#

Mesh.MeshData.GetIndices

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual

Declaration

public void GetIndices(NativeArray<ushort> outIndices, int submesh, bool applyBaseVertex = true);

Declaration

public void GetIndices(NativeArray<int> outIndices, int submesh, bool applyBaseVertex = true);

Parameters

outIndices The destination indices array.
submesh The index of the sub-mesh to get the indices for. See subMeshCount.
applyBaseVertex If true, Unity will apply base vertex offset to the returned indices. The default value is true.

Description

Populates an array with the indices for a given sub-mesh from the MeshData.

The destination array must have enough elements to hold the index buffer of the given sub-mesh. See GetSubMesh and SubMeshDescriptor.indexCount. See Also: Mesh.GetIndices, subMeshCount, GetSubMesh.