作者eight0 ( )
站内EzHotKey
标题Re: [AHK-] 请问怎麽真实模拟D-pad的上下左右?
时间Thu Apr 23 09:00:43 2015
※ 引述《bodhi (????)》之铭言:
: 无论上下/左右 最後输入的为准 所以压住上 按下 就是下 压住左按右 就是右
: 而且一旦放开 就是以尚未放开的为准 所以压住上下 放开上之後 就是下work
这边只有上下的,左右同理。
~up::
if (GetKeyState("down")) {
Send {down up}
}
return
~up up::
if (GetKeyState("down", "P")) {
Send {down down}
}
return
~down::
if (GetKeyState("up")) {
Send {up up}
}
return
~down up::
if (GetKeyState("up", "P")) {
Send {up down}
}
return
不过格斗游戏的话还是乖乖练比较好吧 xD
--
(* ̄▽ ̄)/‧★*"`'*-.,_,.-*'`"*-.,_☆,.-*`
http://i.imgur.com/oAd97.png
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 118.161.136.124
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/EzHotKey/M.1429750847.A.558.html
1F:推 bodhi: 太感谢了@@ 我会试试看 不过我要用WASD来对应上下左右键 04/24 10:56
2F:→ bodhi: 这样就能保留功能又自由配置按键 有问题再请教你^^ 04/24 10:57