Hey,
So I have a simple script that just waits for x amount of seconds, and just loads up the next level. Can someone help me with adding a fade to this splash screen?
using UnityEngine;
using System.Collections;
public class Intro : MonoBehaviour {
public float delayTime = 5;
IEnumerator Start() {
yield return new WaitForSeconds(delayTime);
Application.LoadLevel(1);
}
}