Difference between revisions of "B2.Body:applyForce"

From GiderosMobile
(remove language stuff)
m (Text replacement - "<source" to "<syntaxhighlight")
Line 7: Line 7:
  
 
This wakes up the body.
 
This wakes up the body.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
b2.Body:applyForce(forcex,forcey,pointx,pointy)
 
b2.Body:applyForce(forcex,forcey,pointx,pointy)
 
</source>
 
</source>

Revision as of 17:35, 12 July 2023

Available since: Gideros 2011.6
Class: b2.Body

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. <syntaxhighlight lang="lua"> b2.Body:applyForce(forcex,forcey,pointx,pointy) </source>

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




LiquidFun