Difference between revisions of "R3d.Body:setType"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:
  
 
=== Description ===
 
=== Description ===
Sets the body type. Can be one of the following:
+
Sets the body type.
 +
<syntaxhighlight lang="lua">
 +
r3d.Body:setType(type)
 +
</syntaxhighlight>
 +
 
 +
Must be one of the following:
 
*r3d.Body.STATIC_BODY '''0'''
 
*r3d.Body.STATIC_BODY '''0'''
 
*r3d.Body.KINEMATIC_BODY '''1'''
 
*r3d.Body.KINEMATIC_BODY '''1'''
 
*r3d.Body.DYNAMIC_BODY '''2'''
 
*r3d.Body.DYNAMIC_BODY '''2'''
<syntaxhighlight lang="lua">
 
r3d.Body:setType(type)
 
</source>
 
  
 
=== Parameters ===
 
=== Parameters ===
Line 19: Line 21:
 
cube01.body:setType(r3d.Body.KINEMATIC_BODY )
 
cube01.body:setType(r3d.Body.KINEMATIC_BODY )
 
cube02.body:setType(2)
 
cube02.body:setType(2)
</source>
+
</syntaxhighlight>
  
 
{{R3d.Body}}
 
{{R3d.Body}}

Latest revision as of 11:04, 16 December 2025