Version: 2022.3
LanguageEnglish
  • C#

Mesh.MeshData.GetVertexAttributeOffset

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 int GetVertexAttributeOffset(Rendering.VertexAttribute attr);

Parameters

attr The vertex data attribute to check for.

Returns

int The byte offset within a atream of the data attribute, or -1 if it is not present.

Description

Gets the offset within a vertex buffer stream of a given vertex data attribute on this MeshData.

Meshes usually use a single vertex buffer stream, but it is possible to set up a vertex layout where attributes use different vertex buffers (see SetVertexBufferParams). When you use such a layout, use this function to query where a given attribute is located in a stream.

Note that this function returns the byte offset within a stream, without specifying which stream. To identify the stream that contains a given attribute, use GetVertexAttributeStream.

Additional resources: GetVertexAttributeStream, vertexBufferCount, GetVertexBufferStride, Mesh.GetVertexAttributeOffset.