self:get_rotation

Client

Retrieves the local rotation of the point light


Syntax

local rotation = self:get_rotation()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
vector3rotationCurrent local rotation in degrees as {x, y, z}

Examples

Get the local rotation of a point light
local entity = light.point.create()
local rotation = entity:get_rotation()

core.engine.print("info", "Point light rotation:", util.table.unpack(rotation))

On this page