LightShadows.NoneLightShadows.NoneDescriptionDo not cast shadows (default). See Also: light component.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { light.shadows = LightShadows.None; } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): light.shadows = LightShadows.None |
