码迷,mamicode.com
首页 > 编程语言 > 详细

关于Unity中SteamVR_Controller.Input的错误

时间:2016-11-19 15:48:23      阅读:1394      评论:0      收藏:0      [点我收藏+]

标签:range   获取   nbsp   tde   exception   exce   bsp   ice   except   

当我在看某鸥的视频的时候,里面讲到用Unity做一个贪食蛇后,加入SteamVR插件,并且能用手柄控制蛇的移动.当我跟着上面一步一步做的时候,发现我代码都写完后,启动报错,而视频里面的老师讲的缺没有报错.后来我修改了一下原本报错的是这句:

var device = SteamVR_Controller.Input((int)track.index);//track是手柄上的SteamVR_TrackObject脚本

报错的提示是这样的:

ndexOutOfRangeException: Array index is out of range.
SteamVR_Controller.Input (Int32 deviceIndex) (at Assets/SteamVR/Scripts/SteamVR_Controller.cs:151)

 

我的修改:

var deviceIndex=SteamVR_Controller.GetDeviceIndex (SteamVR_Controller.DeviceRelation.Leftmost);//获取左手手柄的设备索引
var device = SteamVR_Controller.Input(deviceIndex);

这样改完后发现贪食蛇不报错了,可以运行了.

 

关于Unity中SteamVR_Controller.Input的错误

标签:range   获取   nbsp   tde   exception   exce   bsp   ice   except   

原文地址:http://www.cnblogs.com/newwer/p/6080400.html

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