Unity接入飞行遥杆外设

readme

最近有朋友玩DSC,对于摇杆操控很感兴趣,然后想要接入外设来子级设计一套飞行逻辑。

设备测试

这里使用的设备是罗技X56摇杆套件、图马斯特摇杆套件

Unity使用插件

Rewired

场景搭建

创建空对象,挂载输入脚本:InputManager
接入硬件后,在右侧 Joy数组,会有遥杆名称,根据名称,展开以下的按键或者向量,即获得遥杆的操作值。

脚本测试

创建测试脚本:Control_X56
挂载到空对象,即可得到控制数值。

using Rewired;
using System;
using UnityEngine;

public class Control_X56 : MonoBehaviour
{
    InputManager inputManager;

    public Controller[] controllers;
    public Joystick joystick_1;

    public float F;

    void Start()
    {
        controllers = ReInput.controllers.GetControllers(ControllerType.Joystick);

        for (int i = 0; i < controllers.Length; i++)
        {
            //其他外设

            if (controllers[i].name == "Thrustmaster HOTAS Warthog Throttle")
            {
                joystick_1 = (Joystick)controllers[i];
                Debug.Log("油门杆已找到 - " + controllers[i].name);
            }
        }
    }

    void Update()
    {
        if (joystick_1 != null)
        {
            // 0-0.7f
            F = joystick_1.Axes[0].value;
        }
    }

}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值