码迷,mamicode.com
首页 > 其他好文 > 详细

VR开发--HTC Vive基础(1):按键操作

时间:2017-04-01 00:02:47      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:apt   keyword   bsp   ext   auto   family   etc   style   bug   

  • 1 :获取手柄编号

                                                           // 手柄组件 Left = GetComponent<SteamVR_TrackedObject>();

                                                            技术分享// 获取手柄编号(左手柄 == 2) Debug.Log((int)Left.index);技术分享

 

                                                                                                                                            在手柄上挂载此脚本

                                                                                                 

                                                               2 : 获取扳机按键

                                      // 按下了扳机按钮调用
                            if (device.GetTouch(SteamVR_Controller.ButtonMask.Trigger))
                            {
                                      Debug.Log("trigger");
                             }

                                     第二种方式也是Ok的
                             if (device.GetPressDown(Valve.VR.EVRButtonId.k_EButton_SteamVR_Trigger))
                              {
                                    print("123");
                              }

                                                                                

2 : 获取扳机按键

                                                 

 

VR开发--HTC Vive基础(1):按键操作

标签:apt   keyword   bsp   ext   auto   family   etc   style   bug   

原文地址:http://www.cnblogs.com/liumeiyu/p/6653702.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!