Difference between revisions of "B2.World:destroyBody"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | + | '''Available since:''' Gideros 2011.6<br/> | |
− | ''' | + | '''Class:''' [[b2.World]]<br/> |
− | ''' | ||
− | === | + | === Description === |
− | Destroys a rigid body. | + | Destroys a rigid body. |
+ | <syntaxhighlight lang="lua"> | ||
+ | b2.World:destroyBody(body) | ||
+ | </syntaxhighlight> | ||
'''Warning:''' | '''Warning:''' | ||
− | * | + | *this function is locked during callbacks |
− | + | *this automatically deletes all associated shapes and joints | |
− | |||
− | |||
− | |||
− | === | + | === Parameters === |
− | '''body''': (b2.Body) | + | '''body''': (b2.Body) body to be destroyed<br/> |
{{B2.World}} | {{B2.World}} |
Latest revision as of 14:27, 13 July 2023
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