Version: 2020.3
LanguageEnglish
  • C#

Mesh.MeshData.GetVertexAttributeFormat

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 Rendering.VertexAttributeFormat GetVertexAttributeFormat(Rendering.VertexAttribute attr);

Parameters

attr The vertex attribute to check the format of.

Returns

VertexAttributeFormat Returns the format of the given vertex attribute.

Description

Gets the format of a given vertex attribute in the MeshData.

Most vertex attributes have a standard data format. For example, a position is a Vector3. Some vertex attributes have more than one possible data format. For example, Mesh.colors32 and Mesh.colors are different formats for vertex colors. Use this function to query the format of a given vertex attribute. See Also: Mesh.GetVertexAttributeFormat, HasVertexAttribute, GetVertexAttributeDimension.