我只是想知道当我点击鼠标时如何在Javascript中更改为不同的场景。 'Application.LoadLevel'显然已经过时了。 请尽可能简单的脚本,因为我真的无法掌握高级的东西,他们通常会遇到一些我不得不问的错误。
答案 0 :(得分:0)
文档非常清楚。
http://docs.unity3d.com/ScriptReference/Application.LoadLevel.html
Use SceneManager.LoadScene
答案 1 :(得分:0)
在javaScript中,它有点间接但不是很难
//first you need to declare the class file for SceneManager
var ls:UnityEngine.SceneManagement.SceneManager;
//then after declaring this, you can use the LoadScene function
function Start () {
ls.LoadScene("menu");
}