Answers for "how to switch from 1 scene to another in unity"

C#
2

move to another scene unity

using UnityEngine.SceneManagement;
void Start(){
SceneManager.LoadScene(0/* the scene number*/);
}
Posted by: Guest on January-27-2021
0

unity scene switch

Application.LoadScene("SCENE_HERE");
Posted by: Guest on September-24-2021

C# Answers by Framework

Browse Popular Code Answers by Language