标签:apt keyword bsp ext auto family etc style bug
// 手柄组件 Left = GetComponent<SteamVR_TrackedObject>();
// 获取手柄编号(左手柄 == 2) Debug.Log((int)Left.index);
在手柄上挂载此脚本
// 按下了扳机按钮调用
if (device.GetTouch(SteamVR_Controller.ButtonMask.Trigger))
{
Debug.Log("trigger");
}
第二种方式也是Ok的
if (device.GetPressDown(Valve.VR.EVRButtonId.k_EButton_SteamVR_Trigger))
{
print("123");
}
标签:apt keyword bsp ext auto family etc style bug
原文地址:http://www.cnblogs.com/liumeiyu/p/6653702.html