Published
- 1 min read
Unity Scene Load by Name
The solution for this is noted below
Unity Scene Load by Name
Solution
using UnityEngine;
using UnityEngine.SceneManagement;
public class testing : MonoBehaviour
{
private void Update()
{
//Name the scene to Load
SceneManager.LoadScene("Enter Scene Name Here");
}
}
Try other methods by searching on the site. That is if this doesn’t work