Body:getTransform

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


Get 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.

Function

Synopsis

x, y, angle = Body:getTransform( )

Arguments

None.

Returns

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

See Also


Other Languages