Difference between revisions of "B2.World:destroyBody"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Destroys a rigid body. This function is locked during callbacks.<br /> <br /> <ul><br />...") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(10 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
+ | '''Class:''' [[b2.World]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | + | Destroys a rigid body. | |
− | Destroys a rigid body. | + | <syntaxhighlight lang="lua"> |
− | < | + | b2.World:destroyBody(body) |
− | + | </syntaxhighlight> | |
− | + | ||
− | + | '''Warning:''' | |
− | + | *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}} | |
− | = | ||
− | |||
− | '''body |
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