Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

Light.spotAngle

Switch to Manual
public var spotAngle: float;

Description

The angle of the light's spotlight cone in degrees.

This is used primarily for Spot lights and has no effect for Point lights See Also: Light component.

	// Change spot angle randomly between 'minAngle' and 'maxAngle'
	// each 'interval' seconds.

var interval : float = 0.3; var minAngle : float = 10; var maxAngle : float = 90; private var timeLeft : float; timeLeft = interval; light.type = LightType.Spot; function Update () { timeLeft -= Time.deltaTime; if (timeLeft < 0.0) { // time to change! timeLeft = interval; light.spotAngle = Random.Range( minAngle, maxAngle ); } }