Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

Unity Scene Load by Name

using UnityEngine;
using UnityEngine.SceneManagement;
public class testing : MonoBehaviour
{
    private void Update()
    {
    //Name the scene to Load
        SceneManager.LoadScene("Enter Scene Name Here");
    }
}
 
PREVIOUS NEXT
Tagged: #Unity #Scene #Load #Name
ADD COMMENT
Topic
Name
8+8 =