SceneManager in Unity3D uses a thread to load scene data asynchronously. It means that when you requested several scenes by calling LoadSceneAsync, the SceneManager loads scenes sequentially. The postfix Async means that async relative to the main thread.
jintaeks on 2016-12-26_17-28
Edited: 1 year ago
ReplyQuote
Working