大约有 101 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0034 秒)
Laya_社区(65) Laya2.0_示例(9) Laya2.0_文档(9) Laya_示例(6) Laya2.0_api(4) laya_api(4) Laya3.0_文档(3) Laya3.0_api(1)
...100 Y150 时,执行你那个事件回调函数即可 Laya.stage.on(Event.MOUSE_MOVE,this,onMouseMove); private function onMouseMove():void { if(Laya.stage.mouseX == 100 && Laya.stage.mouseY == 150) { //在这里调你想要执行的事件回调函数即可 } } Playerdata1 • 2017-06-08 10...
来源: Laya_社区 发布时间: 20170607
...Layer); drawLayer.width = 800; drawLayer.height = 1030; drawLayer.on(Event.MOUSE_MOVE, this, mousemove); function mousemove(e) { drawLayer.graphics.drawCircle(e.target.mouseX,e.target.mouseY,20,"#ffffff") drawLayer.cacheAsBitmap; } 我的思路是每一次move都把对应的圆形...
来源: Laya_社区 发布时间: 20160725
...求教Event.KEY_DOWN和Event.MOUSE_DOWN调用window.open相关问题 Event.MOUSE_MOVE 事件的问题 问题状态 最新活动: 2016-11-29 20:38 浏览: 1740 关注: 2 人 daohu • 2016-11-30 10:31 好的,我说的就是:Mouse_UP事件没有问题,Event.CLICK好像有问题,既然会改,...
来源: Laya_社区 发布时间: 20161129
...on(Laya.Event.MOUSE_UP, this, this.mouseHandler); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mouseHandler); } private mouseHandler(e:laya.events.Event):void { var touches: Array<any> = e.touches; if (touches) { for(let i=0;i<touches.length;i++){ let t =touches[i]; let nameIndex =e.touc...
来源: Laya_社区 发布时间: 20181102
...].stageX - touches[1].stageX); Laya.stage.on(Event.MOUSE_MOVE, this, this.onMouseMove); } } private onMouseMove(e: Event): void { var touches: Array<any> = e.touches; if (touches &&...
来源: Laya_社区 发布时间: 20171201
...ent.MOUSE_DOWN, this, onCtrlMoveRockerTouchDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, onCtrlMoveRockerTouchDown); function onCtrlMoveRockerTouchDown(e) { console.log("onCtrlMoveRockerTouchDown()"); this.ctrlMoveRockerPosX = undefined; this.ctrlMoveRockerPosY = undefined; ...
来源: Laya_社区 发布时间: 20171204
...n(Laya.Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouseMove); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.onMouseUp, [true]); } /** 按钮动画处理 */ private hitTest(t: Laya.Image) { let s = t.source.getPixels(t.mouseX, t.mouseY, 1, 1).join('')...
来源: Laya_社区 发布时间: 20180731
...ge.on(Laya.Event.MOUSE_DOWN, this, this.onMouse); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouse); 在frameLoop中,我让Laya.stage.pos(movex,movey)后,就再不会调用this.onMouse事件了,请问如何解决? 2018-03-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...
来源: Laya_社区 发布时间: 20180311
...么?微信小游戏环境下的手指事件用MOUSE_UP和MOUSE_EVENT、MOUSE_MOVE对不对? ================================================================================= 问题最后解决了,微信上确实存在onTouchEnd时touches数组包含了已经抬起的手指touch信息,但...
来源: Laya_社区 发布时间: 20180717
...p://m.etao.com/go/market/etao/wndtb-2014.php 我想了一下,使用Event.MOUSE_MOVE很难判断手指在触摸屏上下往复拖动的情况,谁提供个思路? 2017-05-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 ...
来源: Laya_社区 发布时间: 20170531