在Unity3d中,我的版本运行良好,在我的Android Nougat上运行良好。
但是,我试图通过RigidBody Update方法访问控制器。
我在Rigid Body First Person Controller上面添加了一个GvrControllerInput组件。
以下几行:
private void Update()
{
RotateView();
// Example: get controller's current orientation:
Quaternion ori = GvrController.Orientation;
...
}
我收到以下错误: 类型或命名空间名称' GvrControllerInput'无法找到。
对我来说奇怪的是,为控制器或任何Daydream对象添加了名称空间?