self:rotate

Client

Rotates the vehicle body around an axis in the parent's coordinate space


Syntax

local status = self:rotate(
    axis,
    degrees
)

Parameters

TypeNameDescription
vector3axisAxis to rotate around as {x, y, z}
floatdegreesAngle to rotate by in degrees

Returns

TypeNameDescription
boolstatustrue on successful execution, false otherwise

Examples

Rotate a vehicle body
local entity = physics.vehicle.create()

entity:rotate({0, 1, 0}, 45)

On this page