Mesh:getVertexFormat
Available since LÖVE 0.10.0 |
This function is not supported in earlier versions. |
Gets the vertex format that the Mesh was created with.
Function
Synopsis
format = Mesh:getVertexFormat( )
Arguments
None.
Returns
table format
- The vertex format of the Mesh, which is a table containing tables for each vertex attribute the Mesh was created with, in the form of
{attribute, ...}
.
Notes
If a Mesh wasn't created with a custom vertex format, it will have the following vertex format:
defaultformat = {
{"VertexPosition", "float", 2}, -- The x,y position of each vertex.
{"VertexTexCoord", "float", 2}, -- The u,v texture coordinates of each vertex.
{"VertexColor", "byte", 4} -- The r,g,b,a color of each vertex.
}
See Also
- Mesh
- love.graphics.newMesh
- AttributeDataType
- Mesh:setVertex
- Mesh:setVertexAttribute
- love.graphics.draw
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info