大约有 36 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0025 秒)
...); function setup() { createApe(); createTimerLine(); Laya.stage.on( Event.KEY_DOWN, this, this.keyDown); } function createApe() { target = new Sprite(); target.loadImage("../../res/apes/monkey2.png"); Laya.stage.addChild(target); target.pivot(55, 72); target.pos(100,100); } function createTimerLine...
来源: Laya_示例 发布时间: 20241118
... Laya.Event; this.createApe(); this.createTimerLine(); Laya.stage.on(Event.KEY_DOWN, this, this.keyDown); } createApe() { const Sprite = Laya.Sprite; this.target = new Sprite(); Laya.stage.addChild(this.target); this.target.loadImage("res/apes/monkey2.png"); this.target.pivot(55, 72); this.target.po...
来源: Laya2.0_示例 发布时间: 20241118
...关的链接 提交 2 个回复 Laya_XS 赞同来自: Laya.stage.on(Event.KEY_DOWN, this, _onKeyDown); 然后你根据Keyboard对应的keycode来判断是什么键即可 2018-04-06 0 0 分享 微博 QZONE 微信 akunone 赞同来自: laya.events.KeyBoardManager.hasKeyDown(laya.events.Keyboard.CONTRO...
来源: Laya_社区 发布时间: 20180406
...不能监听到 浏览器失去焦点后, 通过Laya.stage.on(Laya.Event.KEY_DOWN, this, this.OnKeyDown)注册的键盘事件, 不能监听到,通过dom注册的键盘事件, 可以被监听到 2019-02-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...
来源: Laya_社区 发布时间: 20190227
...数错误 重现步骤: 1、绑定键盘事件 Laya.stage.on(Event.KEY_DOWN, this, this.onStartMove); 2、打印 回调事件 onStartMove的 event参数,即可得到上图 版本: LayaAir 3.0.5 希望流程: 返回 正常的键盘 keyCode,如示例文档 附件 : --> 2023-10-12 添...
来源: Laya_社区 发布时间: 20231012
...键 定义了一个Input,绑定了键盘事件:this._ipt.on(Laya.Event.KEY_DOWN, this, this.OnInput); private OnInput(evt : EVENT) : void { // 这里怎么获取具体哪个键被按下?。。。 } 2018-11-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...
来源: Laya_社区 发布时间: 20181108
... ohkei - as3、as2、h5 赞同来自: 我知道了,Laya.stage.on(Event.KEY_DOWN....... 2017-08-09 0 0 分享 微博 QZONE 微信 Monica - 知识达人 赞同来自: 好的,有问题再联系! 2017-08-09 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前...
来源: Laya_社区 发布时间: 20170809
... ENTER ERROR FOCUS FOCUS_CHANGE FRAME FULL_SCREEN_CHANGE INPUT JOINT_BREAK KEY_DOWN KEY_PRESS KEY_UP LABEL LAYERCHANGE LINK LOADED MESSAGE MOUSE_DOWN MOUSE_DRAG MOUSE_DRAG_END MOUSE_MOVE MOUSE_OUT MOUSE_OVER MOUSE_UP MOUSE_WHEEL OPEN PAUSED PLAYED PROGRESS READY REMOVED RENDER RESIZE RIGHT_CLICK RIG...
来源: Laya3.0_api 发布时间: 20231115
...中对应 key 的数据 页游 想实现用户点击按钮我模拟触发KEY_DOWN用户实现游览器全屏 Laya.WeakObject怎么遍历key? layabox 程序 访问index.html?key='aaa' key参数启动类怎么获取? 为什么Loader.loadedMap里面的key存的是全路径,而不存相对路径呢...
来源: Laya_社区 发布时间: 20190116
...ddComponent(Laya.Rigidbody); //添加键盘事件 Laya.stage.on(Laya.Event.KEY_DOWN, this, onKeyDown); this.collider = this.scene.getChildByName("Collider"); this.collider.active = false; //是否开启debug模式 Laya.stage.on(Laya.Event.MOUSE_UP, this, drawCollider); } function onKeyDown(e) { if (...
来源: Laya_示例 发布时间: 20241118