Difference between revisions of "Mesh:getVertexMap"

m
m
Line 7: Line 7:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
vertex_map = Mesh:getVertexMap( )
+
map = Mesh:getVertexMap( )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|table|vertex_map|A table containing the list of vertex indices used when drawing.}}
+
{{param|table|map|A table containing the list of vertex indices used when drawing.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::Mesh]]
 
* [[parent::Mesh]]

Revision as of 09:53, 27 January 2016

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Gets the vertex map for the Mesh. The vertex map describes the order in which the vertices are used when the Mesh is drawn. The vertices, vertex map, and mesh draw mode work together to determine what exactly is displayed on the screen.

If no vertex map has been set previously via Mesh:setVertexMap, then this function will return nil in LÖVE 0.10.0+, or an empty table in 0.9.2 and older.

Function

Synopsis

map = Mesh:getVertexMap( )

Arguments

None.

Returns

table map
A table containing the list of vertex indices used when drawing.

See Also

Other Languages