Files
RatStabber/Assets/Scenes/LoreScenes/toCh6.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 ToCh6 : MonoBehaviour
{
// Method to load the "Lore" scene
public void LoadCh6()
{
SceneManager.LoadScene("Chapter6");
}
}