Created
March 22, 2016 13:47
-
-
Save moon-goon/c616f6b2abd3f7685b5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
public class AsyncSample : MonoBehaviour { | |
IEnumerator Start() { | |
AsyncOperation async = Application.LoadLevelAsync("name of the scene here"); | |
yield return async; | |
Debug.Log("Loading complete"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment