using UnityEngine; using UnityEngine.SceneManagement; public class LoadOcean : MonoBehaviour { // General method to load scenes based on build index public void Load() { SceneManager.LoadScene("Ocean"); } }