赞 | 109 |
VIP | 0 |
好人卡 | 0 |
积分 | 196 |
经验 | 970 |
最后登录 | 2025-1-6 |
在线时间 | 2339 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 19551
- 在线时间
- 2339 小时
- 注册时间
- 2015-7-4
- 帖子
- 940
|
暂时没想去改动,你可以试下这三个地方:
Input.KeyMapperPKD = {
9: 'tab', //GP LB
32: 'space', //GP RB
49: '1',
50: '2',
51: '3',
52: '4',
53: '5',
54: '6',
55: '7',
56: '8',
65: 'a', //GP X
68: 'd', //GP B
83: 's', // GP A
87: 'w', //GP Y
120: 'x',
122: 'z'
}
这上面加入你要用的键码
if(Input.isTriggered(IKey.W())) {
this.touchControlAt(1);
return;
}
if(Input.isTriggered(IKey.A())) {
this.touchControlAt(0);
return;
}
if(Input.isTriggered(IKey.D())) {
this.touchControlAt(3);
return;
}
if(Input.isTriggered(IKey.S())) {
this.touchControlAt(2);
return;
}
这上下各四个更改你要用键名。
IKey.W = function()
{
if(Input.isGamepad())
return 'menu';
else
return 'w';
}
IKey.A = function()
{
if(Input.isGamepad())
return 'shift';
else
return 'a';
}
IKey.S = function()
{
if(Input.isGamepad())
return 'ok';
else
return 's';
}
IKey.D = function()
{
if(Input.isGamepad())
return 'cancel';
else
return 'd';
} |
|