Answers for "unity how to switch scenes from code unity"

3

how to change scenes in unity

using System.Collections; 
using System.Collections.Generic; 
using UnityEngine; 
using UnityEngine.SceneManagement;

public class SceneScript {
  public void ChangeScene(string scene = "") {
    SceneManager.LoadScene(sceneName:"scenes Name");
  }
}
Posted by: Guest on May-09-2021

Code answers related to "unity how to switch scenes from code unity"

Browse Popular Code Answers by Language