ソフトシャドウのフェードアウトの速度を設定する。
See Also: shadows, shadowSoftness プロパティ.
// make light's shadow softness fade out really fast light.shadowSoftnessFade = 0.3;
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { light.shadowSoftnessFade = 0.3F; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: light.shadowSoftnessFade = 0.3F