Version: 2020.1
LanguageEnglish
  • C#

Mesh.MeshData.SetVertexBufferParams

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
public void SetVertexBufferParams(int vertexCount, params VertexAttributeDescriptor[] attributes);
public void SetVertexBufferParams(int vertexCount, NativeArray<VertexAttributeDescriptor> attributes);

Parameters

vertexCount The number of vertices in the Mesh.
attributes Layout of the vertex data: which attributes are present, their data types and so on.

Description

Sets the vertex buffer size and layout of the Mesh that Unity creates from the MeshData.

Use this function to set vertex buffer size and layout for newly created Mesh data (see Mesh.AllocateWritableMeshData). For details, see Mesh.SetVertexBufferParams.

After you have set the vertex buffer parameters, you can write the vertices into the array returned by Mesh.MeshData.GetVertexData. If you call this method on a read-only MeshData, Unity throws an exception.

Did you find this page useful? Please give it a rating: