大约有 30 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0038 秒)
...ing = input[static] 定义 input 事件对象的 type 属性值。Event KEY_DOWN : String = keydown[static] 定义 keydown 事件对象的 type 属性值。Event KEY_PRESS : String = keypress[static] 定义 keypress 事件对象的 type 属性值。Event KEY_UP : String = keyup[static] 定...
来源: laya_api 发布时间: 20170929
...1); // enter键发送默认字体或输入框内字体 Laya.stage.on(Event.KEY_DOWN,this,onKeyDown); } private function onKeyDown(e:Event):void { // 当按下enter健自动发送文字 if(e.keyCode==13) { change(str); } } // 发送文字样式二,如果input有值的话,发送input的内容 priv...
来源: Laya_社区 发布时间: 20170107
...化引擎 Laya.init(1136, 640,WebGL); trace("ok..."); Laya.stage.on(Event.KEY_DOWN, this, this.onKeydown); } private function onKeydown(event:Event):void { var self:* = this; if(event.keyCode === Keyboard.SPACE) { //移除动画 if(testAnim1) { testAnim1.clear(); testAnim1.removeSelf(); testAnim1 = ...
来源: Laya_社区 发布时间: 20180424
...tring = input[static] 定义 input 事件对象的 type 属性值。Event KEY_DOWN : String = keydown[static] 定义 keydown 事件对象的 type 属性值。Event KEY_PRESS : String = keypress[static] 定义 keypress 事件对象的 type 属性值。Event KEY_UP : String = keyup[static] 定义 k...
来源: Laya2.0_api 发布时间: 20190513
...tring = input[static] 定义 input 事件对象的 type 属性值。Event KEY_DOWN : String = keydown[static] 定义 keydown 事件对象的 type 属性值。Event KEY_PRESS : String = keypress[static] 定义 keypress 事件对象的 type 属性值。Event KEY_UP : String = keyup[static] 定义 k...
来源: laya_api 发布时间: 20170929
...ya.stage.on(Laya.Event.KEY_UP,this,this.onkeyup); Laya.stage.on(Laya.Event.KEY_DOWN,this,this.onkeydown); Laya.timer.frameLoop(1,this,this.loop);事件响应 onkeyup(e){ for(let i:number = 0;i<this.keyList.length;i++){ if(this.keyList[i]==e.keyCode){ this.keyList.splice(i,1); break; } } } onkeydo...
来源: Laya_社区 发布时间: 20171125
...分享 微博 QZONE 微信 kevinchen2046 赞同来自: Laya.stage.on(Event.KEY_DOWN,this,KeyHandler); 应该这样写.... 2017-01-24 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 186*****403 相关问题 Layabox 2.0 bate5 运行编译...
来源: Laya_社区 发布时间: 20170123
...* 定义 keydown 事件对象的 type 属性值。*/ static KEY_DOWN: string; /** 定义 keypress 事件对象的 type 属性值。*/ static KEY_PRESS: string; /** 定义 keyup 事件对象的 type 属性值。*/ static KEY_U...
来源: Laya_社区 发布时间: 20170601
... GameStart.super(this); Laya.stage.on(Laya.Event.KEY_DOWN,LayaSample,Test); } function Test(e){ console.log(e.keycode); } 按下按键后一直输出undefined,在入口类里面却能输出对应按键编号,是什么...
来源: Laya_社区 发布时间: 20180208
...r(this,this.onCallBack),null,Laya.Loader.BUFFER); Laya.stage.on(Laya.Event.KEY_DOWN,this,this.onKey); //######################################################################## } private curStatus:boolean = false; private refreshCamera(){ this.curStatus =!this.curStatus; let data:ArrayBuffer = Laya....
来源: Laya_社区 发布时间: 20220815