罗技宏框架 - 提炼自 kiccer/Soldier76 项目
请问Mkey代表什么,看了看官方文档没看明白代表的含义,看到在lua中有一段连点的示例 ``` -- 按住左键连点效果实现范例 (开启大写生效) local G1 = false lmf.on("mousedown", function (e) -- console.log(e) if e.g == 1 and e.capslock then G1 = true setM(1) end end) lmf.on("mkeydown", function (e) if G1 and e.capslock then setM(1) mouseTap(1) end end) lmf.on("mouseup", function (e) if e.g == 1 then G1 = false end end) console.log(lmf) ``` 不是很明白为何要设置Mkey
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by kohyzsc123 and has received 1 comments.