Difference between revisions of "B2.RevoluteJoint:getMotorForce"

From GiderosMobile
m (corrected class)
m (Text replacement - "<source" to "<syntaxhighlight")
Line 6: Line 6:
 
=== <translate>Description</translate> ===
 
=== <translate>Description</translate> ===
 
Returns the current motor force given the inverse time step, usually in N.
 
Returns the current motor force given the inverse time step, usually in N.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number) = b2.RevoluteJoint:getMotorForce(inv_dt)
 
(number) = b2.RevoluteJoint:getMotorForce(inv_dt)
 
</source>
 
</source>

Revision as of 17:51, 12 July 2023


Available since: Gideros 2011.6
Class: b2.RevoluteJoint

Description

Returns the current motor force given the inverse time step, usually in N. <syntaxhighlight lang="lua"> (number) = b2.RevoluteJoint:getMotorForce(inv_dt) </source>

Parameters

inv_dt: (number)

Return values

Returns (number) the current motor force given the inverse time step, usually in N




LiquidFun