我尝试使用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
}
答案 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;
}
...