Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Light.range

Switch to Manual
public var range: float;

Description

The range of the light.

See Also: Light component.

// Pulse light's range between original range
// and half of the original one

var duration : float = 3.0; var originalRange : float;

var lt: Light;

function Start() { lt = GetComponent.<Light>(); originalRange = lt.range; }

function Update() { var amplitude : float = Mathf.PingPong(Time.time, duration); // Transform from 0..duration to 0.5..1 range. amplitude = amplitude / duration * 0.5 + 0.5; // Set light range. lt.range = originalRange * amplitude; }