Files
RatStabber/Assets/Scenes/LoreScenes/Prequel/BackToLore.cs
Iazubi 3ebf3b2022 Added GameObjects for selecting ANY chapter
You can now enter all the chapters via the corresponding buttons
2024-10-27 01:00:49 -07:00

12 lines
225 B
C#

using UnityEngine;
using UnityEngine.SceneManagement;
public class PrequelToLore : MonoBehaviour
{
// Method to load the "Lore" scene
public void LoadLoreScene()
{
SceneManager.LoadScene("Lore");
}
}