Difference between revisions of "PrismaticJoint:getMotorForce"

(Added PrismaticJoint:getMotorForce.)
 
Line 1: Line 1:
Get the current motor force.
+
Returns the current motor force.
 +
 
 
== Function ==
 
== Function ==
 +
{{newin|[[0.8.0]]|080|type=variant}}
 +
=== Synopsis ===
 +
<source lang="lua">
 +
force = PrismaticJoint:getMotorForce( invdt )
 +
</source>
 +
=== Arguments ===
 +
{{param|number|invdt|How long the force applies. Usually the inverse time step or 1/dt.}}
 +
=== Returns ===
 +
{{param|number|force|The force on the motor in newtons.}}
 +
 +
== Function ==
 +
{{oldin|[[0.8.0]]|080|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 9: Line 22:
 
=== Returns ===
 
=== Returns ===
 
{{param|number|f|The current motor force, usually in N.}}
 
{{param|number|f|The current motor force, usually in N.}}
 +
 
== See Also ==
 
== See Also ==
 
* [[parent::PrismaticJoint]]
 
* [[parent::PrismaticJoint]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Get the current motor force.}}
+
{{#set:Description=Returns the current motor force.}}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|PrismaticJoint:getMotorForce}}
 
{{i18n|PrismaticJoint:getMotorForce}}

Latest revision as of 12:12, 4 May 2012

Returns the current motor force.

Function

Available since LÖVE 0.8.0
This variant is not supported in earlier versions.

Synopsis

force = PrismaticJoint:getMotorForce( invdt )

Arguments

number invdt
How long the force applies. Usually the inverse time step or 1/dt.

Returns

number force
The force on the motor in newtons.

Function

Removed in LÖVE 0.8.0
This variant is not supported in that and later versions.

Synopsis

f = PrismaticJoint:getMotorForce( )

Arguments

None.

Returns

number f
The current motor force, usually in N.

See Also


Other Languages