当前位置:   article > 正文

unity3d手柄按键事件回调_unity 重置手柄

unity 重置手柄
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

/// <summary>
/// 定义一个按键类.设置手柄按键
/// </summary>
public class ButtonTouchAction : MonoBehaviour {
    SteamVR_TrackedObject trackdeObjec;
    void Awake() {  
        //获取手柄上的这个组件  
        trackdeObjec = GetComponent<SteamVR_TrackedObject>();  
    } 
    // Update is called once per frame
    void FixedUpdate () {
        //获取手柄输入  
        SteamVR_Controller.Device device = SteamVR_Controller.Input((int)trackdeObjec.index);
        if(device.GetTouchDown(SteamVR_Controller.ButtonMask.Trigger))//按下扳机
        {
            print("真的按下扳机");
        }
        //按下圆盘键
        if (device.GetPress(SteamVR_Controller.ButtonMask.Touchpad))
        {
            // 获取触摸板上的坐标
            Vector2 pad = device.GetAxis();
            // 转换角度
            Vector3 cross = Vector3.Cross(new Vector2(1, 0), pad);
            float angle = Vector2.Angle(new Vector2(1, 0), pad);
            float ang = cross.z > 0 ? -angle : angle; 
            //根据角度来判断上下左右四个范围
            //下
            if (ang > 45 && ang < 135)
            {
                print("下");
            }
            //上  
            else if (ang < -45 && ang> -135)
            {
                print("上");
            }
            //左  
            else if ((ang < 180 && ang> 135) || (ang < -135 && ang > -180))
            {
                print("左");
            }
            //右  
            else if ((ang > 0 && ang< 45) || (ang > -45 && ang< 0))
            {
                print("右");
            }
        }
    }
}
  • 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
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/146567
推荐阅读
相关标签
  

闽ICP备14008679号