C#Unity创建虚拟按钮

时间:2017-07-12 23:50:25

标签: unity3d

我尝试使用Vuforia Framework在Unity中创建虚拟按钮。 我遵循了这个教程: http://3dvrcentral.com/2016/09/19/how-to-augmented-reality-tutorials-virtual-buttons-with-unity-and-vuforia/

我的控制台告诉我按下按钮但是只要我添加代码让僵尸做某事我的控制台就会给我这个例外。在异常之后我也发布了我的代码。

a = text1 text2 text3 text4  
b = text1 text8 text9 text5 
c = text6 text5 text1 text9   
d = text5 text4 text2 text9

}

1 个答案:

答案 0 :(得分:0)

应与行

相关
zombie = GameObject.Find ("zombie");

尝试使用bool并在Start()之后搜索僵尸,就像这样

    private bool isSetted = false;
    ...
    void Update()
    {
        if (!isSetted)
        {
            zombie = GameObject.Find("zombie");
            if (zombie != null)
                isSetted = true;
    }
    ...