gpt4 book ai didi

ios - 使用 iOS 版 GoogleVR (GoogleCardboard) 在 Unity 中创建单一 View

转载 作者:行者123 更新时间:2023-11-29 05:59:18 25 4
gpt4 key购买 nike

我是一名大学生,尝试使用 Unity 与 GoogleVR sdk (Google Cardboard) 配合构建 iOS VR 应用程序。我可以让我的应用程序在 iPad 上运行,但屏幕上的显示是通过两只眼睛的两个视口(viewport)(或相机,不确定正确的术语)。

虽然这可能与 VR 的理念相矛盾,但我实际上只想要一个中央摄像机的视角,并让该显示填充整个屏幕。

我一直在搜索 Unity 项目文件和 google Cardboard 文件,但尚未找到实现此目的的方法。有没有一种简单的方法可以关闭两眼显示并改为进行单 View ?如果是这样,我要修改什么文件?

谢谢!

最佳答案

Cardboard SDK 在 iOS 上为您提供的主要功能是立体渲染、基于陀螺仪的相机旋转控制以及凝视指针。如果您不需要立体渲染,可以在 XR 设置中禁用 VR 支持,并使用其他两项的一些简单替换。您可以将常规相机添加到场景中,然后使用如下脚本根据手机陀螺仪设置其旋转:

using UnityEngine;

class SceneManager : MonoBehaviour {

void Start() {

// Enable the gyro so that it can be used to control the camera rotation.
Input.gyro.enabled = true;
}

void Update() {

// Update the camera rotation based on the gyroscope.
Camera.main.transform.Rotate(
-Input.gyro.rotationRateUnbiased.x,
-Input.gyro.rotationRateUnbiased.y,
Input.gyro.rotationRateUnbiased.z
);
}
}

要替换凝视指针,您可以使用 Unity 的独立输入模块通过输入系统路由屏幕触摸事件(例如,触发实现 IPointerClickHandler 的脚本)。

关于ios - 使用 iOS 版 GoogleVR (GoogleCardboard) 在 Unity 中创建单一 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54847760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com