你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
发现
话题
全文搜索
登录
[]监听按键事件怎么写呀,TS的
监听按键事件怎么写呀,TS的
没有找到相关结果
已邀请:
与内容相关的链接
提交
2 个回复
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
-
知识达人
赞同来自:
~\(≧▽≦)/~赞
要回复问题请先
登录
发起人
sfg007
相关问题
分享:自定义事件派发与侦听(A页面派发 B页面侦听)
TextInput重写onFocus和onBlur事件监听不到
关于遍历产生的sprite的点击事件,急,大神帮看哈
Animation如何加点击事件
微信小游戏与加载图片时不会触发erroe事件
遮罩点击事件
List滑动条会引起单元格上的按钮点击后多次触发点击事件
unity动画事件demo有没有另外的实现方式
点击事件不起效
3d物理不能触发onCollisionEnter事件
鼠标滚轮滚动事件
问题状态
最新活动:
2016-10-15 17:52
浏览:
5620
关注:
2
人
商务合作
2 个回复
sfg007
赞同来自:
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 - 知识达人
赞同来自: