enumeration
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.
CloseFor 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.
CloseData type of a VertexAttribute.
Individual components of a Mesh vertex can use different data types. For example, a vertex normal could be stored as either 32-bit float, or 16-bit float numbers.
See Also: VertexAttribute, Mesh.GetVertexAttributeFormat, Mesh.GetVertexAttributes, VertexAttributeDescriptor.
Float32 | 32-bit float number. |
Float16 | 16-bit float number. |
UNorm8 | 8-bit unsigned normalized number. |
SNorm8 | 8-bit signed normalized number. |
UNorm16 | 16-bit unsigned normalized number. |
SNorm16 | 16-bit signed normalized number. |
UInt8 | 8-bit unsigned integer. |
SInt8 | 8-bit signed integer. |
UInt16 | 16-bit unsigned integer. |
SInt16 | 16-bit signed integer. |
UInt32 | 32-bit unsigned integer. |
SInt32 | 32-bit signed integer. |