self:get_global_position

Client

Retrieves the global world-space position of the directional light


Syntax

local position = self:get_global_position()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
vector3positionCurrent global world-space position as {x, y, z}

Examples

Get the global world-space position of a directional light
local entity = light.directional.create()
local position = entity:get_global_position()

core.engine.print("info", "Directional light position:", util.table.unpack(position))

On this page