Body:setTransform

Available since LÖVE 11.2
This function is not supported in earlier versions.


Set the position and angle of the body.

Note that the position may not be the center of mass of the body. An angle of 0 radians will mean "looking to the right". Although radians increase counter-clockwise, the y axis points down so it becomes clockwise from our point of view.

This function cannot wake up the body.

Function

Synopsis

Body:setTransform( x, y, angle )

Arguments

number x
The x component of the position.
number y
The y component of the position.
number angle
The angle in radians.

Returns

Nothing.

See Also


Other Languages