Difference between revisions of "B2.World:destroyBody"

From GiderosMobile
(removed language stuff)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Class:''' [[b2.World]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/b2.World|b2.World]]<br/>
 
  
=== <translate>Description</translate> ===
+
=== Description ===
Destroys a rigid body. This function is locked during callbacks.
+
Destroys a rigid body.
 
 
'''Warning:'''
 
*This automatically deletes all associated shapes and joints.
 
*This function is locked during callbacks.
 
 
<source lang="lua">
 
<source lang="lua">
 
b2.World:destroyBody(body)
 
b2.World:destroyBody(body)
 
</source>
 
</source>
  
=== <translate>Parameters</translate> ===
+
'''Warning:'''
'''body''': (b2.Body) <translate>body to be destroyed</translate> <br/>
+
*this function is locked during callbacks
 +
*this automatically deletes all associated shapes and joints
 +
 
 +
=== Parameters ===
 +
'''body''': (b2.Body) body to be destroyed<br/>
  
 
{{B2.World}}
 
{{B2.World}}

Revision as of 22:56, 8 January 2022

Available since: Gideros 2011.6
Class: b2.World

Description

Destroys a rigid body.

b2.World:destroyBody(body)

Warning:

  • this function is locked during callbacks
  • this automatically deletes all associated shapes and joints

Parameters

body: (b2.Body) body to be destroyed





LiquidFun