mirror of
https://github.com/xiaopeng12138/MaiDXR.git
synced 2024-11-24 12:00:09 +01:00
29 lines
1014 B
C#
29 lines
1014 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using UnityEngine;
|
|
using WindowsInput.Native;
|
|
public class ButtonToKey : MonoBehaviour
|
|
{
|
|
[DllImport("user32.dll")]
|
|
public static extern uint MapVirtualKey(uint uCode, uint uMapType);
|
|
[DllImport("user32.dll")]
|
|
static extern void keybd_event(byte bVk, byte bScan, uint dwFlags, UIntPtr dwExtraInfo);
|
|
public VirtualKeyCode keyToPress;
|
|
|
|
private int _insideColliderCount = 0;
|
|
private bool triggered = true;
|
|
private void OnTriggerEnter(Collider other)
|
|
{
|
|
keybd_event(System.Convert.ToByte(keyToPress), (byte)MapVirtualKey((uint)keyToPress, 0), 0, UIntPtr.Zero);
|
|
_insideColliderCount += 1;
|
|
}
|
|
|
|
private void OnTriggerExit(Collider other)
|
|
{
|
|
if (_insideColliderCount == 0)
|
|
keybd_event(System.Convert.ToByte(keyToPress), (byte)MapVirtualKey((uint)keyToPress, 0), 2, UIntPtr.Zero);
|
|
_insideColliderCount -= 1;
|
|
_insideColliderCount = Mathf.Max(0, _insideColliderCount);
|
|
}
|
|
}
|