Files
RatStabber/Assets/Scenes/LoreScenes/toCh2.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
215 B
C#

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