LightType.SpotLightType.SpotDescriptionThe light is a spot light. See Also: Light.type, light component.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { light.type = LightType.Spot; } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): light.type = LightType.Spot |
