self:set_position

Client

Sets the local position of the directional light


Syntax

local status = self:set_position(
    position
)

Parameters

TypeNameDescription
vector3positionPosition to apply as {x, y, z}

Returns

TypeNameDescription
boolstatustrue on successful execution, false otherwise

Examples

Set the local position of a directional light
local entity = light.directional.create()

entity:set_position({0, 5, 0})

On this page