Versions with this page:
Versions without this page:
The fade speed of the flare.
See Also: Lens flare component, flare assets.
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public LensFlare lf; public Transform tr; void Update() { lf.fadeSpeed = 0.5F; } }