码迷,mamicode.com
首页 > 编程语言 > 详细

Unity C#模拟Windows按键

时间:2017-12-22 03:31:29      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:源码   sof   style   key   inpu   tor   参考   art   body   

  • 使用库InputSimulator,实际该库核心为调用Win32中SendInput方法
  • 将该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);

        }

    }

    程序运行后,大写锁定键被按下

Unity C#模拟Windows按键

标签:源码   sof   style   key   inpu   tor   参考   art   body   

原文地址:http://www.cnblogs.com/Tuncle/p/8083098.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!