2017年3月24日修改
vive的sdk SteamVR在升级,会有些改动。最新的SteamVR1.2.1在Unity5.4.4下狂报错。
下面的内容是在以下环境完成的
unity5.4.4
SteamVR1.2.0(http://download.csdn.net/detail/wuyt2008/9792970)
ViveInputUtility1.5.1beta(http://download.csdn.net/detail/wuyt2008/9792980)
啊,为什么开始做vive的开发了,这个问题别问哦。好了,说正事。
请看下图
手柄两个一对,分左右,开发的时候也是分左右的。每个上面有一个pad和4个按钮。简单说明下:
需要两个插件:
商城地址如下,都是免费的,下载后导入
https://www.assetstore.unity3d.com/cn/#!/content/32647
https://www.assetstore.unity3d.com/cn/#!/content/64219
using HTC.UnityPlugin.Vive;
每个按钮包括pad都有GetPress、GetPressDown、GetPressUp三种方法,用HandRole枚举来确定左右手柄,用ControllerButton枚举来确定是哪个按钮。
对于按钮,GetPressDown是按下时触发,GetPressUp是放开时触发,以上两个是个事件,GetPress是按住时一直返回ture,算是一个状态。
对于pad,有两种:
当ControllerButton.Pad时,和按钮相同。
当ControllerButton.PadTouch时,GetPressDown是接触时触发,GetPressUp是离开时触发,GetPress是接触时一直返回的状态。
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using HTC.UnityPlugin.Vive;
public class viveLearn : MonoBehaviour {
// Update is called once per frame
void Update () {
if (ViveInput.GetPress (HandRole.RightHand, ControllerButton.Menu)) {
Debug.Log ("menu press");
}
if (ViveInput.GetPressUp (HandRole.RightHand, ControllerButton.Menu)) {
Debug.Log ("menu press up");
}
if (ViveInput.GetPressDown (HandRole.RightHand, ControllerButton.Menu)) {
Debug.Log ("menu press down");
}
}
}
除了上面的方法,还可以通过回掉的方式实现
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using HTC.UnityPlugin.Vive;
public class viveLearn : MonoBehaviour {
private void Awake(){
ViveInput.AddPress (HandRole.LeftHand, ControllerButton.Menu, OnMenuPress);
}
private void OnDestory(){
ViveInput.RemovePress (HandRole.LeftHand, ControllerButton.Menu, OnMenuPress);
}
private void OnMenuPress(){
Debug.Log ("menu press");
}
}
Trigger有模拟值,从0到1,没按的时候是0,全部按下是1。可以通过GetTriggerValue方法获得。
ViveInput.GetTriggerValue (HandRole.LeftHand, false);
当TriggerValue在0.1到0.2时,对应HairTrigger,当TriggerValue超过0.5时对应Trigger,当TriggerValue=1时,对应FullTrigger。
可以简单理解为,轻按=HairTriiger,中度按=Trigger,全部按下=FullTrigger。
pad做那么大,当然除了可以按,还可以返回位置信息。用GetPadAxis方法即可。
ViveInput.GetPadAxis (HandRole.LeftHand, false);
触碰位置信息如下图
此外,对应pad,又有接触、按下的两组方法。其中,Axis是坐标位置,Delta是最后一帧移动位置,Vector是移动的向量。
ViveInput.GetPadTouchAxis (HandRole.LeftHand, false);
ViveInput.GetPadTouchDelta (HandRole.LeftHand, false);
ViveInput.GetPadTouchVector (HandRole.LeftHand, false);
ViveInput.GetPadPressAxis (HandRole.LeftHand, false);
ViveInput.GetPadPressDelta (HandRole.LeftHand, false);
ViveInput.GetPadPressVector (HandRole.LeftHand, false);