using UnityEngine; using System.Collections; public class Preloader : MonoBehaviour { IEnumerator Start () { yield return new WaitForSeconds(2); Application.LoadLevel(Application.loadedLevel + 1); } }