Difference between revisions of "Mesh:setGenericArray"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | + | '''Available since:''' Gideros 2017.4<br/> | |
− | ''' | + | '''Class:''' [[Mesh]]<br/> |
− | ''' | + | |
− | === | + | === Description === |
− | + | Assigns a new content to a generic additional array to be used by a shader. | |
− | Assigns new content to a generic additional array to be used by a shader. | + | <syntaxhighlight lang="lua"> |
− | + | Mesh:setGenericArray(index,type,mult,count,data) | |
− | < | + | </syntaxhighlight> |
− | + | ||
− | </ | + | It accepts multiple values or a Lua array. |
− | === | + | |
− | '''index''': (number) | + | === Parameters === |
− | '''type''': (number) | + | '''index''': (number) the data attribute index in the corresponding shader<br/> |
− | '''mult''': (number) | + | '''type''': (number) the data type, one of Shader.Dxxx constants<br/> |
− | '''count''': (number) | + | '''mult''': (number) the vector dimension (1 for simple values, 2 for a vec2/float2, etc)<br/> |
− | '''data''': (any) | + | '''count''': (number) the number of elements in the array<br/> |
+ | '''data''': (any) the actual values<br/> | ||
+ | |||
+ | {{Mesh}} |
Latest revision as of 14:30, 13 July 2023
Available since: Gideros 2017.4
Class: Mesh
Description
Assigns a new content to a generic additional array to be used by a shader.
Mesh:setGenericArray(index,type,mult,count,data)
It accepts multiple values or a Lua array.
Parameters
index: (number) the data attribute index in the corresponding shader
type: (number) the data type, one of Shader.Dxxx constants
mult: (number) the vector dimension (1 for simple values, 2 for a vec2/float2, etc)
count: (number) the number of elements in the array
data: (any) the actual values
- Mesh
- Mesh.new
- Mesh:clearColorArray
- Mesh:clearIndexArray
- Mesh:clearTexture
- Mesh:clearTextureCoordinateArray
- Mesh:clearVertexArray
- Mesh:getColor
- Mesh:getColorArraySize
- Mesh:getIndex
- Mesh:getIndexArraySize
- Mesh:getTextureCoordinate
- Mesh:getTextureCoordinateArraySize
- Mesh:getVertex
- Mesh:getVertexArraySize
- Mesh:resizeColorArray
- Mesh:resizeIndexArray
- Mesh:resizeTextureCoordinateArray
- Mesh:resizeVertexArray
- Mesh:setAutoSort
- Mesh:setColor
- Mesh:setColorArray
- Mesh:setColors
- Mesh:setCullMode
- Mesh:setGenericArray
- Mesh:setIndex
- Mesh:setIndexArray
- Mesh:setIndices
- Mesh:setInstanceCount
- Mesh:setPrimitiveType
- Mesh:setTexture
- Mesh:setTextureCoordinate
- Mesh:setTextureCoordinateArray
- Mesh:setTextureCoordinates
- Mesh:setVertex
- Mesh:setVertexArray
- Mesh:setVertices