Difference between revisions of "Mesh:setDrawRange"
(Created page) |
m |
||
Line 10: | Line 10: | ||
{{param|number|min|The index of the first vertex to use when drawing, or the index of the first value in the vertex map to use if one is set for this Mesh.}} | {{param|number|min|The index of the first vertex to use when drawing, or the index of the first value in the vertex map to use if one is set for this Mesh.}} | ||
{{param|number|max|The index of the last vertex to use when drawing, or the index of the last value in the vertex map to use if one is set for this Mesh.}} | {{param|number|max|The index of the last vertex to use when drawing, or the index of the last value in the vertex map to use if one is set for this Mesh.}} | ||
+ | === Returns === | ||
+ | Nothing. | ||
+ | |||
+ | == Function == | ||
+ | Allows all vertices in the Mesh to be drawn. | ||
+ | === Synopsis === | ||
+ | <source lang="lua"> | ||
+ | Mesh:setDrawRange( ) | ||
+ | </source> | ||
+ | === Arguments === | ||
+ | None. | ||
=== Returns === | === Returns === | ||
Nothing. | Nothing. |
Revision as of 20:24, 7 April 2015
Available since LÖVE 0.9.1 |
This function is not supported in earlier versions. |
Restricts the drawn vertices of the Mesh to a subset of the total.
Contents
Function
Synopsis
Mesh:setDrawRange( min, max )
Arguments
number min
- The index of the first vertex to use when drawing, or the index of the first value in the vertex map to use if one is set for this Mesh.
number max
- The index of the last vertex to use when drawing, or the index of the last value in the vertex map to use if one is set for this Mesh.
Returns
Nothing.
Function
Allows all vertices in the Mesh to be drawn.
Synopsis
Mesh:setDrawRange( )
Arguments
None.
Returns
Nothing.
Notes
If a vertex map is used with the Mesh, this method will set a subset of the values in the vertex map array to use, instead of a subset of the total vertices in the Mesh.
For example, if Mesh:setVertexMap(1, 2, 3, 1, 3, 4)
and Mesh:setDrawRange(4, 6)
are called, vertices 1, 3, and 4 will be drawn.
See Also
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