Project1

标题: Alpha ABS能不能改键的? [打印本页]

作者: 786863491q    时间: 2017-12-3 13:33
标题: Alpha ABS能不能改键的?
我不想用ASDF

作者: Fan723    时间: 2017-12-3 22:20
暂时没想去改动,你可以试下这三个地方:
        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';
                }
作者: 786863491q    时间: 2017-12-4 11:17
Fan723 发表于 2017-12-3 22:20
暂时没想去改动,你可以试下这三个地方:
        Input.KeyMapperPKD = {
                9: 'tab', //GP LB

好的 谢谢




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1