大约有 3 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0012 秒)
...const Event = Laya.Event; // 用Set实现更好一些 keyDownList = []; // 添加键盘按下事件,一直按着某按键则会不断触发 Laya.stage.on(Event.KEY_DOWN, this, this.onKeyDown); // 添加键盘抬起事件 Laya.stage.on(Event.KEY_UP, this, this.onKeyUp); } /** 键盘按下处理 */ on...
来源: Laya2.0_示例 发布时间: 20241117
... appendText(value) { txt.text += value; txt.scrollY = txt.maxScrollY; } /**添加提示文本*/ createLogger() { const Text = Laya.Text; txt = new Text(); txt.overflow = Text.SCROLL; txt.text = "请把鼠标移到到矩形方块,左右键操作触发相应事件\n"; txt.size(Laya.stage.width, Laya.s...
来源: Laya2.0_示例 发布时间: 20241117
...0); } /**按下事件处理*/ onMouseDown(e) { const Event = Laya.Event; //添加鼠标移到侦听 Laya.stage.on(Event.MOUSE_MOVE, this, this.onMouseMove); buttonPosition = this.button.x; Laya.stage.on(Event.MOUSE_UP, this, this.onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, this.onMouseUp); } /*...
来源: Laya2.0_示例 发布时间: 20241117