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