using UnityEngine; using UnityEngine.SceneManagement; public class LoadSceneByIndex : MonoBehaviour { // General method to load scenes based on build index public void LoadScene(int sceneIndex) { SceneManager.LoadScene(sceneIndex); } }