Unity5按钮点击“不能正常工作”

时间:2016-03-29 13:40:15

标签: javascript button unityscript unity5

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");
    }

1 个答案:

答案 0 :(得分:0)

这是因为你的职能是私人的。把它们公之于众。

#pragma strict
public function QuitGamne() {
    Debug.Log ("Game is exiting....");
    Application.Quit ();
}

public function StartGame() {
    Application.LoadLevel ("level1");
}