반응형
Application 클래스 함수
Application.LoadLevel
- Scene의 이름 또는 인덱스로 Scene 로드.
Application.LoadLevelAdditive
- Scene을 추가해서 로드
===================================================================
ex)
void GoScene()
{
// Scene01을 먼저 로드한 다음
// Scene02를 추가해서 로드.
// Scene01 씬에 Scene02가 병합되어 로드됨.
Application.LoadLevel("Scene01");
Application.LoadLevelAdditive("Scene02");
}
===================================================================
Applicarion.LoadLevelAdditiveAsync
- 비동기 방식 백그라운드로 Scene을 추가해 로드.
Applicarion.LoadLevelAsync
- 비동기 방식으로 씬을 로드.
반응형
'프로그래밍 정리 > Unity' 카테고리의 다른 글
[Unity - 유니티] Network 클래스 제공 콜백함수 (0) | 2014.06.08 |
---|---|
[Unity - 유니티] NetworkView, RPC - Network 게임 제작시. (0) | 2014.06.08 |
[Unity - 유니티] SendMessage 함수 - 여러 개의 파타미터 던지기 (1) | 2014.06.06 |
[Unity - 유니티] StopAllCoroutine - 모든 코루틴함수 정지. (0) | 2014.06.06 |
[Unity - 유니티] GameObject.SendMessage (0) | 2014.06.06 |