การใช้งานให้ทำการใส่ค่าสีที่ต้องการเข้าไปในตัวแปร changeTo
อาจจะสั่งเปลี่ยนสีจากสคริปอื่นหรือตั้งเงื่อนไขการเปลี่ยนสีในสคริปนี้เลยก็ได้
using UnityEngine;
using System.Collections;
public class cameraBG : MonoBehaviour
{
public Color changeTo;
void Update ()
{
camera.backgroundColor = Color.Lerp(camera.backgroundColor, currentColor , Time.deltaTime);
}
}
using System.Collections;
public class cameraBG : MonoBehaviour
{
public Color changeTo;
void Update ()
{
camera.backgroundColor = Color.Lerp(camera.backgroundColor, currentColor , Time.deltaTime);
}
}