Difference between revisions of "Mesh:setIndex"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Sets an index in the index array. Indices start from 1. If the index array is not large enough, it is automatically expanded.
 
Sets an index in the index array. Indices start from 1. If the index array is not large enough, it is automatically expanded.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
Mesh:setIndex(i,index)
 
Mesh:setIndex(i,index)
 
</source>
 
</source>
Line 14: Line 14:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
-- set the first 3 indices as 10, 11 and 12
 
-- set the first 3 indices as 10, 11 and 12
 
mesh:setIndex(1, 10)
 
mesh:setIndex(1, 10)

Revision as of 15:28, 13 July 2023