Collider:getPose

Edit

Returns the position and orientation of the Collider.

x, y, z, angle, ax, ay, az = Collider:getPose()

Arguments

None

Returns

NameTypeDescription
xnumber The x position of the Collider, in meters.
ynumber The y position of the Collider, in meters.
znumber The z position of the Collider, in meters.
anglenumber The number of radians the Collider is rotated around its axis of rotation.
axnumber The x component of the axis of rotation.
aynumber The y component of the axis of rotation.
aznumber The z component of the axis of rotation.

Notes

If World:interpolate has been called, this returns an interpolated pose between the last two physics updates.

See also