Answers for "how to change scenes with button press in unity c#"

C#
1

how to change scenes with button press in unity c#

using UnityEngine;
using UnityEngine.SceneManagement;

public class whatever : MonoBehaviour	

public void LoadScene(string SceneName)
{
  SceneManager.LoadScene(SceneName);
}
Posted by: Guest on July-05-2021

Code answers related to "how to change scenes with button press in unity c#"

C# Answers by Framework

Browse Popular Code Answers by Language