How to switch scenes in Unity. code example
Example 1: how to switch scenes in unity
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
//Load based on name of scene
public class SceneScript {
public void ChangeScene(string scene = "") {
SceneManager.LoadScene(sceneName:"scenes Name");
}
}
Example 2: how to change scenes in unity
SceneManager.LoadScene(scenename);