User Tools

Site Tools


set_entity_light_color

Set Entity Light Color


Changes the color of the light attached to the specified entity over a duration of time (with the assumption that the entity is a light source).

Signature:

set_entity_light_color(entity, color, duration)
ArgumentDescriptionTypeRequired
entityEntity that will have its light color changed.EntityYes
colorNew color for the light.ColorYes
durationFade duration from its current color to the new color.NumberNo

If you'd like to instantly toggle the entity's light on or off instead of changing its color, see the related Set Entity Light Enabled function.

Example:

set_entity_light_color(self, color[255, 0, 255], 1);

Results: The entity to which the script is attached (i.e. “self”) will have the color of its light change to magenta over a duration of one second.

Use the Set Entity Light Color function to dim/brighten a lamp in a room or to emulate a multi-color light (like an LED on an electronic device).

Editor Node:

Visual Demo:

set_entity_light_color.txt · Last modified: 2021/04/21 18:50 by justin