Hi2,
有人知道如何通过Unity中的C#代码在steamVR控制器上获取菜单按钮输入吗?
目前,我能够从触发器,触控板和握把按钮获取输入。
private void Update()
{
if (SteamVR_Input._default.inActions.GrabGrip.GetStateDown(inputSource))
Debug.Log("grab grip"); // the side button on the controller
if (SteamVR_Input._default.inActions.GrabPinch.GetStateDown(inputSource))
Debug.Log("grab pinch"); // the back button on the controller
if (SteamVR_Input._default.inActions.Teleport.GetStateDown(inputSource))
Debug.Log("teleport"); // the big middle button on the controller
}
感谢您的帮助。 ^ _ ^
答案 0 :(得分:0)