我应该使用哪种语言对键盘上的按键进行编码?
Which Language Should I Use To Code Keys On A Keyboard?
如何对键盘上的键进行编码?我正在尝试制作游戏,但我想知道如何为按键分配角色。例如:
Spacebar = Splits in two
Q = Macro feed
I = Open/Close Inventory
...
我想我可以使用 python 但我不确定。我的 python 代码是:
n = 2
if(UserPress == Spacebar):
CellSplits = True
CellParts = n*2
而且我认为 jQuery 可能有效:
$(document).ready(function(){
var $(Cell) = $('.Cell')
$('.Cell').mousefollow(Cell)
});
此外,这款游戏将仿制 Agario。
jQuery中的基本语法是这样的:
$(document).keypress(function(e) {
if(e.which == 32) {
alert('You pressed space');
}
if(e.which == 81) {
alert('You pressed Q');
}
if(e.which == 73) {
alert('You pressed I');
}
});
或者您可以改用 switch 语句:
$(document).keypress(function(e) {
switch (e.which) {
case 32:
alert('You pressed space');
break;
case 81:
alert('You pressed Q');
break;
case 73:
alert('You pressed I');
break;
}
});
如何对键盘上的键进行编码?我正在尝试制作游戏,但我想知道如何为按键分配角色。例如:
Spacebar = Splits in two
Q = Macro feed
I = Open/Close Inventory
...
我想我可以使用 python 但我不确定。我的 python 代码是:
n = 2
if(UserPress == Spacebar):
CellSplits = True
CellParts = n*2
而且我认为 jQuery 可能有效:
$(document).ready(function(){
var $(Cell) = $('.Cell')
$('.Cell').mousefollow(Cell)
});
此外,这款游戏将仿制 Agario。
jQuery中的基本语法是这样的:
$(document).keypress(function(e) {
if(e.which == 32) {
alert('You pressed space');
}
if(e.which == 81) {
alert('You pressed Q');
}
if(e.which == 73) {
alert('You pressed I');
}
});
或者您可以改用 switch 语句:
$(document).keypress(function(e) {
switch (e.which) {
case 32:
alert('You pressed space');
break;
case 81:
alert('You pressed Q');
break;
case 73:
alert('You pressed I');
break;
}
});