Answers for "how to switch scenes unity c#"

C#
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
2

how to change scenes in unity

SceneManager.LoadScene(scenename);
Posted by: Guest on May-27-2020

Code answers related to "how to switch scenes unity c#"

C# Answers by Framework

Browse Popular Code Answers by Language