Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save deadasadodo/c6c90f064f6444397236acff9f3abdc9 to your computer and use it in GitHub Desktop.

Select an option

Save deadasadodo/c6c90f064f6444397236acff9f3abdc9 to your computer and use it in GitHub Desktop.
void Start () {
StartCoroutine (loadSceneAfterDelay(30));
}
IEnumerator loadSceneAfterDelay(float waitbySecs){
yield return new WaitForSeconds(waitbySecs);
Application.LoadLevel (2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment