AsyncOperation
SceneManager.LoadSceneAsync("SceneName");
AsyncOperation과 LoadSceneAsysc를 이용해 메인에서 Start()함수에서 미리 Scene을 로드하고 allowSceneActivation를 false로 설정해 바로 시작하지 않게 만든다
ex)
AsyncOperation async;
void Start(){
StartCoroutine(LoadScene());
}
IEnumerator LoadScene() { yield return null; AsyncOperation async = SceneManager.LoadSceneAsync(GameScene, LoadSceneMode.Additive); async.allowSceneActivation = false; while (!async.isDone) { Debug.Log("async progress : " + (async.progress) + "%" + "\nasync.allowSceneActivation = " + async.allowSceneActivation); if (_gamePlay&&async.progress>=0.9f) async.allowSceneActivation = true; yield return null; } }
void StartGame(){
_gamePlay=true;
}
'Unity' 카테고리의 다른 글
[Unity]Galuxy S8/8+ 카드보드, 데이드림 및 하이브리드 2D 앱 다운 현상 해결방법 (0) | 2019.03.28 |
---|---|
[Unity]초당 Frame 값 만들기 (0) | 2019.03.28 |
[Unity]안드로이드 빌드 시 NDK 문제 해결 방법 (0) | 2019.03.27 |
CommandInvokationFailure 에러 해결하는 네가지 방법 (0) | 2019.03.27 |
[Unity]텍스쳐 altas로 묶기 (0) | 2019.03.26 |