added scene switcher debug menu

can be accessed at any time with the
This commit is contained in:
slevy14
2023-04-26 13:03:48 -07:00
parent 6612092d51
commit 41d128373d
10 changed files with 1760 additions and 14 deletions

View File

@@ -38,4 +38,8 @@ public class SceneController : MonoBehaviour
SceneManager.LoadScene(0); // main menu scene should be 0
}
public void LoadChosenScene(int index) {
SceneManager.LoadScene(index);
}
}