[]监听按键事件怎么写呀,TS的

监听按键事件怎么写呀,TS的
已邀请:

sfg007

赞同来自:

onkeydown(e: Laya.Event): void{  
        console.log(e.keyCode);     
       if(e.keyCode==37){//左
           this.hero.pos(this.hero.x-100,this.hero.y);           
       }else if(e.keyCode==39){//右
           this.hero.pos(this.hero.x+100,this.hero.y);
       }else if(e.keyCode==38){//上
           this.hero.pos(this.hero.x,this.hero.y-100);
       }else if(e.keyCode==40){//下
           this.hero.pos(this.hero.x,this.hero.y+100);

       }
    }
搞定了

Monica - 知识达人

赞同来自:

~\(≧▽≦)/~赞

要回复问题请先

商务合作
商务合作