Difference between revisions of "B2.World:destroyBody"

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

Revision as of 17:16, 18 February 2020


Available since: Gideros 2011.6
Class: b2.World

Description

Destroys a rigid body. This function is locked during callbacks.

Warning:

  • This automatically deletes all associated shapes and joints.
  • This function is locked during callbacks.
b2.World:destroyBody(body)

Parameters

body: (b2.Body) body to be destroyed





LiquidFun