Difference between revisions of "Body:setLinearVelocity"

m (1 revision: Imported docs from potato.)
Line 1: Line 1:
  
 
+
Sets a new linear velocity for the Body.
 +
This function will not accumulate anything; any impulses previously applied since the last call to World:update will be lost.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
Line 14: Line 15:
 
* [[parent::Body]]
 
* [[parent::Body]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Sets a new linear velocity for the Body.
 +
}}

Revision as of 16:17, 14 February 2010

Sets a new linear velocity for the Body. This function will not accumulate anything; any impulses previously applied since the last call to World:update will be lost.

Function

Synopsis

Body:setLinearVelocity( x, y )

Arguments

number x
The x-component of the velocity vector.
number y
The y-component of the velocity vector.

Returns

Nothing.

See Also