赞
踩
一、定义手柄按键API
1、InputDevices.GetDeviceAtXRNode,通过XRNode获取对应的设备;
2、XRNode是一个枚举类型,包含LeftEye、RightEye、CenterEye、Head、LeftHand、RightHand、GameController、TrackingReference、HardwareTracker;
3、TryGetFeatureValue,得到某个特性的值;
4、CommonUsages定义了用于从XR.InputDevice.TryGetFeatureValue获取输入特征的静态变量,用来指定想要获取的特性。
1 2 3 4 5 6 7 8 9 10 11 12 |
|
二、控制物体移动
编写脚本用手柄控制物体的前后左右移动,如果把脚本挂载到头显上,就变成控制自身的移动。
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.XR; public class ControlObject : MonoBehaviour { // Update is called once per frame void Update() { Vector2 vec2DAxis = Vector2.zero; InputDevices.GetDeviceAtXRNode(XRNode.LeftHand).TryGetFeatureValue(CommonUsages.primary2DAxis, out vec2DAxis); transform.position = new Vector3(transform.position.x + vec2DAxis.x * Time.deltaTime, transform.position.y, transform.position.z + vec2DAxis.y * Time.deltaTime); } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。