IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> Unity中使用XR Input获取XR设备中手柄的姿态信息 -> 正文阅读

[游戏开发]Unity中使用XR Input获取XR设备中手柄的姿态信息

在上一篇博客Unity在XR设备中获取手柄的按键信息_XR风云-CSDN博客我们知道怎样获取手柄的按键信息,那怎样获取得到手柄的姿态信息呢?

也是很简单的了,Unity的XR Input已经帮我们对接上Oculus平台,能够获取手柄姿态信息。

1、根据输入设备的类型获取设备,设备类型包括如下,我们今天是获取手柄信息,主要用到Left或者Right。

    //
    // 摘要:
    //     A set of bit flags describing XR.InputDevice characteristics.
    [Flags]
    public enum InputDeviceCharacteristics : uint
    {
        //
        // 摘要:
        //     A default value specifying no flags.
        None = 0,
        //
        // 摘要:
        //     The InputDevice is attached to the head.
        HeadMounted = 1,
        //
        // 摘要:
        //     The InputDevice has a camera and associated camera tracking information.
        Camera = 2,
        //
        // 摘要:
        //     The InputDevice is held in the user's hand. Typically, a tracked controller.
        HeldInHand = 4,
        //
        // 摘要:
        //     The InputDevice provides hand tracking information via a Hand input feature.
        HandTracking = 8,
        //
        // 摘要:
        //     The InputDevice provides eye tracking information via an Eyes input feature.
        EyeTracking = 16,
        //
        // 摘要:
        //     The InputDevice provides 3DOF or 6DOF tracking data.
        TrackedDevice = 32,
        //
        // 摘要:
        //     The InputDevice is a game controller.
        Controller = 64,
        //
        // 摘要:
        //     The InputDevice is an unmoving reference object used to locate and track other
        //     objects in the world.
        TrackingReference = 128,
        //
        // 摘要:
        //     The InputDevice is associated with the left side of the user.
        Left = 256,
        //
        // 摘要:
        //     The InputDevice is associated with the right side of the user.
        Right = 512,
        //
        // 摘要:
        //     The InputDevice reports software approximated, positional data.
        Simulated6DOF = 1024
    }

2、 姿态信息主要使用2个值,CommonUsages.devicePosition, CommonUsages.deviceRotation,来获取得到位置信息以及旋转信息。我们封装了一些借口,获取得到某个手柄的姿态信息。

    public static bool Get(InputDeviceCharacteristics desiredCharacteristics, InputFeatureUsage<Vector3> inputFeatureUsage, out Vector3 value)
    {
        List<InputDevice> allDevices = new List<InputDevice>();
        InputDevices.GetDevicesWithCharacteristics(desiredCharacteristics, allDevices);
        if (allDevices.Count <= 0)
        {
            Debug.LogError($"not has device by {desiredCharacteristics}");
            value = default;
            return false;
        }

        if (allDevices.Count > 1)
        {
            Debug.LogError($"If the number of devices exceeds 1, the first device is selected by default. ");
            value = default;
            return false;
        }

        InputDevice device = allDevices[0];
        if (!device.TryGetFeatureValue(inputFeatureUsage, out value))
        {
            Debug.LogError($"TryGetFeatureValue {inputFeatureUsage} failed!");
            value = default;
            return false;
        }

        return true;
    }

    public static bool Get(InputDeviceCharacteristics desiredCharacteristics, InputFeatureUsage<Quaternion> inputFeatureUsage, out Quaternion value)
    {
        List<InputDevice> allDevices = new List<InputDevice>();
        InputDevices.GetDevicesWithCharacteristics(desiredCharacteristics, allDevices);
        if (allDevices.Count <= 0)
        {
            Debug.LogError($"not has device by {desiredCharacteristics}");
            value = default;
            return false;
        }

        if (allDevices.Count > 1)
        {
            Debug.LogError($"If the number of devices exceeds 1, the first device is selected by default. ");
            value = default;
            return false;
        }

        InputDevice device = allDevices[0];
        if (!device.TryGetFeatureValue(inputFeatureUsage, out value))
        {
            Debug.LogError($"TryGetFeatureValue {inputFeatureUsage} failed!");
            value = default;
            return false;
        }

        return true;
    }

3、获取右手柄的姿态信息调用如下,获取其他信息也是一样的方法。

XRMeetingInput.Get(InputDeviceCharacteristics.Right, CommonUsages.devicePosition, out Vector3 postion);
XRMeetingInput.Get(InputDeviceCharacteristics.Right, CommonUsages.deviceRotation, out Quaternion rotation);

4、获取得到的信息,我开始以为获取得到是手柄的世界坐标,但是我怎么调试都不正确。经过查询资料才得知,这个函数返回的姿态信息都是本地姿态localPosition,localRotation,不是世界坐标。

所以需要把他们转换成世界坐标,比如在Oculus中需要知道playspace的Transform,然后进行转换成世界坐标,如下转换:

Vector3 position = MixedRealityPlayspace.Transform.TransformPoint(localPosition);
Quaternion rotation = MixedRealityPlayspace.Rotation * localRotation;

这样就可以获取得到手柄的世界坐标。

参考文献:

Unity - Manual: Unity XR Input

Unity - Scripting API: CommonUsages

Unity - Scripting API: XR.InputDevices.GetDevicesWithCharacteristics

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-03-08 22:54:07  更:2022-03-08 22:55:33 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 17:56:56-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码