ADDED BUILD SCENES FOR LORE

The project now knows there are lots of new scenes
This commit is contained in:
Iazubi
2024-10-26 17:02:33 -07:00
parent fbacdc7592
commit 93ce0ad656
53 changed files with 2595 additions and 80 deletions

View File

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