Version: 2017.4
public float fadeSpeed ;

説明

フレアがフェードするスピード

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public LensFlare lf; public Transform tr; void Update() { lf.fadeSpeed = 0.5F; } }