关于Unity中SteamVR_Controller.Input的错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Unity中SteamVR_Controller.Input的错误相关的知识,希望对你有一定的参考价值。
当我在看某鸥的视频的时候,里面讲到用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的错误的主要内容,如果未能解决你的问题,请参考以下文章