您好我通过观看教程开发了一个应用程序vr注视应用程序。(https://www.youtube.com/watch?v=_YTVsLnK-XU)当点击十字线(VR注视光标)时,立方体将向上移动。一旦我点击立方体它将向上移动。实际上,该项目是统一的。但是在将它作为一个应用程序之后。我使用了蓝牙控制器。但是控制器没有选择注视光标。它不起作用。即使点击它也不会向上移动。请帮忙! ma统一版本是5.5.2 googlevr sdk版本是v1.0.0 我使用的代码是
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MoveStoolUp : MonoBehaviour
{
// Use this for initialization
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void movestoolupward()
{
transform.position += new Vector3(0f, 1f, 0f);
}
}