If you click here you can see there is no function there Unity Buildt在一个组件中,您可以选择脚本并从中选择任何功能。我写这个脚本,当我想选择它的功能时,它就写了#34;没有功能"。请帮助我!
#pragma strict
function QuitGamne() {
Debug.Log ("Game is exiting....");
Application.Quit ();
}
function StartGame() {
Application.LoadLevel ("level1");
}
答案 0 :(得分:0)
这是因为你的职能是私人的。把它们公之于众。
#pragma strict
public function QuitGamne() {
Debug.Log ("Game is exiting....");
Application.Quit ();
}
public function StartGame() {
Application.LoadLevel ("level1");
}