Section 4: Lecture 51(Importing Pervious Number Wizard script)

An error about the script “LoadLevel” . I can’t able to create a new script in my project. Help Please.

This is happening because you are using an updated version of Unity (5.5) they did some changes in the way you manage scenes.

please past your loadlevel code so we can help you.

1 Like

using UnityEngine ;
using System.Collections;

public class LevelManager : MonoBehaviour {

public void LoadLevel(string name ){
	Debug.Log("level load requested for"+name); 
	Application.LoadLevel(name); 
}

public void QuitRequest(){
	Debug.Log("I want to quit!"); 
}

}

Here is the Code/script of LoadLevel

replace:

`Application.LoadLevel(name);` 

for:

SceneManager.LoadScene(name);

Let me know if works.

When i replaced the code; it start giving an error complier.

i fixed this script error by changing Public class and Public void. but unity editor still giving an error complier on 8th and 16th. and there is no 16th line in the script.


Privacy & Terms