Horje
Change Level in Unity Code Example
how to change scenes in unity
        SceneManager.LoadScene(scenename);
Change Level in Unity
public UnityEngine.UI.InputField sceneInputField; //Refence to your inputField

public void ChangeSceneBasedOnInputField() //Code that needs to be called
 {
      UnityEngine.SceneManagement.SceneManager.LoadScene(sceneInputField.text);  
     //This way you can type either the index of the scene or it's name
     //Will throw an error if it can`t find the scene
} 




Csharp

Related
basic math functions in c# Code Example basic math functions in c# Code Example
c# get enum name from value Code Example c# get enum name from value Code Example
c# list Code Example c# list Code Example
unity convert number to notation Code Example unity convert number to notation Code Example
c# string list Code Example c# string list Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8