Started Finalizing Ch. 1

title
This commit is contained in:
Iazubi
2024-10-26 23:39:07 -07:00
parent 93f055d99e
commit 26d66b6c72
16 changed files with 771 additions and 20 deletions

View File

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