- 使用库InputSimulator,实际该库核心为调用Win32中SendInput方法
- 官网地址
- 有源码及Dll下载
- 将该Dll放至Unity Plugins目录下
- 使用需要包括命名空间WindowsInput
- VirtualKeyCode枚举数据可参考MSDN文档
https://msdn.microsoft.com/en-us/library/dd375731(VS.85).aspx
- 实例代码
using UnityEngine;
using WindowsInput;
public class TestInputSimulator : MonoBehaviour
{
void
Start
(){
InputSimulator.SimulateKeyDown(VirtualKeyCode.CAPITAL);
}
}
程序运行后,大写锁定键被按下
时间: 2024-12-20 22:39:04