Difference between revisions of "Mesh:setCullMode"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(2 intermediate revisions by 2 users not shown)
Line 4: Line 4:
  
 
=== Description ===
 
=== Description ===
Sets the mesh face culling mode.
+
Sets the mesh face culling mode. Useful for 3D, not so much for 2D ;-) .
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
Mesh:setsetCullMode(cullmode)
 
Mesh:setsetCullMode(cullmode)
</source>
+
</syntaxhighlight>
  
 
'''cullmode''' is of type integer and can be one of the following values:
 
'''cullmode''' is of type integer and can be one of the following values:
*'''1''' = CULL_NONE
+
*'''Sprite.CULL_NONE''' = 0
*'''2''' = CULL_FRONT
+
*'''Sprite.CULL_FRONT ''' = 1
*'''3''' = CULL_BACK
+
*'''Sprite.CULL_BACK ''' = 2
  
 
=== Parameters ===
 
=== Parameters ===
 
'''cullmode''': (number) one of the available culling mode<br/>
 
'''cullmode''': (number) one of the available culling mode<br/>
 
=== Example ===
 
<source lang="lua">
 
</source>
 
  
 
{{Mesh}}
 
{{Mesh}}

Latest revision as of 15:30, 13 July 2023