Vital.sandbox
Model

self:get_rotation

Shared

Retrieves the current rotation of the model in 3D world-space


Syntax

local rotation = self:get_rotation()

Parameters

TypeNameDescription

Returns

TypeNameDescription
vector3rotation3D world-space rotation of the model as {x, y, z} (in degrees)

Examples

Get the world-space rotation of a model
local entity = model.create("character")
local rotation = entity:get_rotation()

engine.print("info", "Rotation:", rotation[1], rotation[2], rotation[3])

On this page