유니티 scene 불러오기 노트
똑같은 Scene 불러오기 (Restart 기능) public void Restart(){ //Application.LoadLevel(Application.loadedLevel); // or SceneManager.LoadScene(SceneManager.GetActiveScene().path); } Scene 종료 (Quit) Application.Quit(); ※ 유니티 에디터 내에서는 작동 안함. Debug.Log로 확인필요. Index 이용해서 Scene 불러오기 using UnityEngine.SceneManagement; public class SceneManagerScript : MonoBehaviour public void MainMenu() { SceneManager.LoadScene(0..
Unity/C# note
2020. 8. 15. 23:56