当前位置:   article > 正文

Unity SteamVR获取手柄按钮触发事件_unity steamvr 手柄任意按键按下事件

unity steamvr 手柄任意按键按下事件

在unity如何获取VR手柄的按钮

1.首先创建一个C#Script并绑定在任意gameobect上,

using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using UnityEngine.Events;
using Valve.VR;
using Valve.VR.InteractionSystem;
namespace Valve.VR.Extras
{

    public class Press : MonoBehaviour
    {
        SteamVR_Behaviour_Pose pose;
        public SteamVR_Action_Boolean teleport = SteamVR_Input.GetBooleanAction("Teleport");
        private GameObject behaviourR;
        
        // Use this for initialization
        void Start()
        {
            behaviourR = GameObject.Find("RightHand");
            pose = behaviourR.GetComponent<SteamVR_Behaviour_Pose>();
        }

        // Update is called once per frame
        void Update()
        {
            if (teleport.GetStateDown(pose.inputSource))
            {
                x = true;
            }
            else if (teleport.GetStateUp(pose.inputSource))
            {
                x = false;
            }
        }
    }
}


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

这是控制手柄Teleport键的代码 ↓

public SteamVR_Action_Boolean teleport = SteamVR_Input.GetBooleanAction("Teleport");
  • 1

这是控制右手手柄的的代码 ↓

void Start()
        {
            behaviourR = GameObject.Find("RightHand");
            pose = behaviourR.GetComponent<SteamVR_Behaviour_Pose>();
        }
  • 1
  • 2
  • 3
  • 4
  • 5

如果需要再控制左手手柄,可以改成这样,它主要是获取Player中的RightHand或LightHand上的SteamVR_Behaviour_Pose脚本

void Start()
        {
            behaviourR = GameObject.Find("RightHand");
            pose = behaviourR.GetComponent<SteamVR_Behaviour_Pose>();
            behaviourL = GameObject.Find("LightHand");
            poseL = behaviourL.GetComponent<SteamVR_Behaviour_Pose>();
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

本脚本主要是控制Update中的X来判断按键是否按下

 void Update()
        {
            if (teleport.GetStateDown(pose.inputSource))
            {
                x = true;
            }
            else if (teleport.GetStateUp(pose.inputSource))
            {
                x = false;
            }
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/146550
推荐阅读
相关标签
  

闽ICP备14008679号