Hi on my program Iv’e made a javascript which allows me to change between one scene to another with the use of a time. However I now want to use this same script so it changes scene with a time limit however I also want it to fade in between these scenes how would I be able to do this?
#pragma strict
function Start () {
yield WaitForSeconds (6);
Application.LoadLevel ("Game");
}
function Update () {
}