Difference between revisions of "B2.Body:applyForce"
From GiderosMobile
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Available since:''' Gideros 2011.6<br/> | + | '''<translate>Available since</translate>:''' Gideros 2011.6<br/> |
− | === Description === | + | === <translate>Description</translate> === |
<translate><br /> | <translate><br /> | ||
Applies a force at a world point. If the force is not<br /> | Applies a force at a world point. If the force is not<br /> | ||
Line 10: | Line 10: | ||
b2.Body:applyForce(forcex,forcey,pointx,pointy) | b2.Body:applyForce(forcex,forcey,pointx,pointy) | ||
</source> | </source> | ||
− | === Parameters === | + | === <translate>Parameters</translate> === |
'''forcex''': (number) <translate></translate> <br/> | '''forcex''': (number) <translate></translate> <br/> | ||
'''forcey''': (number) <translate></translate> <br/> | '''forcey''': (number) <translate></translate> <br/> | ||
'''pointx''': (number) <translate>the x coordinate of the world position of the point of application</translate> <br/> | '''pointx''': (number) <translate>the x coordinate of the world position of the point of application</translate> <br/> | ||
'''pointy''': (number) <translate>the y coordinate of the world position of the point of application</translate> <br/> | '''pointy''': (number) <translate>the y coordinate of the world position of the point of application</translate> <br/> |
Revision as of 07:27, 24 August 2018
Available since: Gideros 2011.6
Description
Applies a force at a world point. If the force is not
applied at the center of mass, it will generate a torque and
affect the angular velocity. This wakes up the body.
b2.Body:applyForce(forcex,forcey,pointx,pointy)
Parameters
forcex: (number)
forcey: (number)
pointx: (number) the x coordinate of the world position of the point of application
pointy: (number) the y coordinate of the world position of the point of application