Added GameObjects for selecting ANY chapter

You can now enter all the chapters via the corresponding buttons
This commit is contained in:
Iazubi
2024-10-27 01:00:49 -07:00
parent 67e9116a80
commit 3ebf3b2022
23 changed files with 1568 additions and 53 deletions

View File

@@ -0,0 +1,11 @@
using UnityEngine;
using UnityEngine.SceneManagement;
public class ToCh2 : MonoBehaviour
{
// Method to load the "Lore" scene
public void LoadCh2()
{
SceneManager.LoadScene("Chapter2");
}
}