Answers for "unity scenemanager loadscene scene/s/we"

C#
26

unity load scene

using UnityEngine.SceneManagement;

//Put this in whenever you want to load a scene
SceneManager.LoadScene("Scene name");
Posted by: Guest on March-23-2020
13

unity load scene

using UnityEngine.SceneManagement;

int buildIndex = 0;
//Load the scene with a build index
SceneManager.LoadScene(buildIndex);
Posted by: Guest on April-18-2020
4

unity how to load up a scene

SceneManager.LoadScene("scene_01");
Posted by: Guest on January-17-2020

C# Answers by Framework

Browse Popular Code Answers by Language