Version: 2021.2
언어: 한국어

Mesh.MeshData.GetVertexAttributeDimension

매뉴얼로 전환
public int GetVertexAttributeDimension (Rendering.VertexAttribute attr);

파라미터

attr The vertex attribute to get the dimension of.

반환

int Returns the dimension of the vertex attribute. Returns 0 if the vertex attribute is not present.

설명

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

Most vertex attributes have a standard data layout. For example, a normal is a 3-component vector. Some vertex attributes (usually texture coordinates) have more than one possible data layout. For example, SetUVs accepts either 2 dimensional, 3 dimensional or 4 dimensional texture coordinates. You can use this function to query the layout of a given vertex attribute. See Also: HasVertexAttribute, GetVertexAttributeFormat.