大约有 127 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0050 秒)
Laya_社区(82) Laya2.0_文档(21) Laya3.0_文档(9) laya_api(6) Laya2.0_api(6) Laya2.0_示例(2) Laya3.0_api(1)
...e("pagepage"); // Laya.stage.event(Event.MOUSE_DOWN); // this.rankView.list["_content"].event(Event.MOUSE_DOWN,null); } } // function showRan...
来源: Laya_社区 发布时间: 20180525
...this.mouseOutCallback); // this.bubbleView.on(Laya.Event.MOUSE_DOWN, this, this.mouseDownCallback); } 然后,鼠标down 0.5秒,松开,就会出现如下的顺序 mouseUpCallback mouseOutCallback mouseMoveCallback out ,move 事件触发再up之后,但如果不长...
来源: Laya_社区 发布时间: 20191122
...ne.getChildByName('VideoNode') as Laya.VideoNode; Laya.stage.on(Laya.Event.MOUSE_DOWN,this, ()=>{ console.error('Laya.Event.MOUSE_DOWN'); video.play(); }); 很简单的结构,只有在微信上播放不了 1677851971用户 • 2024-03-16 19:56 测试可以播放了,就是手机微信上视频...
来源: Laya_社区 发布时间: 20230825
...的链接 提交 2 个回复 158*****871 赞同来自: Laya.stage.on(Event.MOUSE_DOWN, this, this.onMouseDown); onMouseDown(e) { const Event = Laya.Event; // 手机上才有 touches 属性 let touches = e.touches; if (touches && touches.length == 2) { preRadian = Math.atan2( touc...
来源: Laya_社区 发布时间: 20190919
...机型(一部XR)StageX不对 //注册事件 Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouseEvent); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.onMouseEvent); Laya.stage.on(Laya.Event.MOUSE_OUT, this, this.onMouseEvent); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouseEvent);...
来源: Laya_社区 发布时间: 20230619
...// Button添加鼠标事件,让Image不显示 this.Button.on( Laya.Event.MOUSE_DOWN, this, ()=>{ this.Image.visible = false; }); } 运行此场景来看看效果,如动图2-7所示。 (动图2-7) UI组件脚本就已经介绍完了,再复杂的UI都可以通过勾选组件声明,让ID...
来源: Laya3.0_文档 发布时间: 20241014
...023 Laya.stage.on(Event.MOUSE_UP, this, onApeRelease); Laya.stage.on(Event.MOUSE_DOWN, this, onApeRelease); 通过 Event 类型 监听动作 class Event { /** 一个空的 Event 对象。用于事件派发中转使用。*/ static EMPTY: Event; /** 定...
来源: Laya_社区 发布时间: 20170601
...且 setMouseDownHandler: function (context, handler) { this.on(this.EVENT.MOUSE_DOWN, context, handler); }, setMoveHandler: function (context, handler) { this.on(this.EVENT.MOUSE_MOVE, context, handler); }, setMouseUpHandler: function (context, handler) { this.on(this.EVENT.MOUSE_UP, context, handle...
来源: Laya_社区 发布时间: 20170316
...单点的情况下会获得三个触摸点信息Laya.stage.on(Laya.Event.MOUSE_DOWN, this, (data: Laya.Event) => { let str = ""; if (data.touches) { for (let i = 0; i < data.touches.length; i++) { str += ` {${i} : ${data.touches[i].pos.toString()}}`; } } console.log("drag mouse down", str); })...
来源: Laya_社区 发布时间: 20230823
...tion-out" guideContainer.addChild(interactionArea); gameContainer.on(Event.MOUSE_DOWN, this, downHandler); gameContainer.on(Event.MOUSE_UP, this, upHandler); } private function moveHandler():void { interactionArea.graphics.drawCircle(Laya.stage.mouseX, Laya.stage.mouseY, 30, "#ff0000"); } private fu...
来源: Laya_社区 发布时间: 20170315