Answers for "how to make a button got to onother scene in unity"

C#
2

how to open new scene in unity click button

using UnityEngine.SceneManager;  void OnMouseUp() {     SceneManager.LoadScene("SceneName", LoadSceneMode.single); }
Posted by: Guest on November-30-2020

Code answers related to "how to make a button got to onother scene in unity"

C# Answers by Framework

Browse Popular Code Answers by Language