본문 바로가기
Unity 유니티

unity 유니티 오류 Scene '...' couldn't be loaded because it has not been added to the build settings or the AssetBundle has not been loaded.

by 지나팩 2023. 8. 22.

이 오류는  SceneManager.LoadScene("...") 함수를 통해서 Scene을 로드하는데 해당 Scene이 프로젝트에 포함이 되지 않아서 생기는 오류입니다.

File -> Build Settings

Scene 파일을 드래그 & 드랍하시면 Scene파일이 추가됩니다. 또는 열려있는 현재 Scene을 추가하려면 오른쪽 아래 Add Open Scenes 버튼을 누리시면 됩니다. SceneManager.LoadScene("...") 을 통해서 Scene이름이나 인덱스로 Scene을 불러올 수 있게됩니다.

 

댓글