• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 191 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0036 秒)

71. laya可以支持滑动手势吗 [ 68%]

...同来自: 手势识别主要会用到以下几个方法:_obj.on(Event.MOUSE_DOWN,  Laya.stage.on(Event.MOUSE_MOVE, Laya.stage.on(Event.MOUSE_UP, Laya.stage.on(Event.MOUSE_OUT,   2017-06-23 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起...

来源: Laya_社区 发布时间: 20170617

72. laya拖拽在部分机型(一部XR)StageX不对 [ 67%]

...机型(一部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

73. 按钮旋转 点击区域 [ 67%]

...且 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

74. 小米手机三指点击后,后续获得的触摸点失效 [ 66%]

...单点的情况下会获得三个触摸点信息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

75. UI运行时 · LayaAir3.0文档 · LAYABOX [ 66%]

...// Button添加鼠标事件,让Image不显示 this.Button.on( Laya.Event.MOUSE_DOWN, this, ()=>{ this.Image.visible = false; }); } 运行此场景来看看效果,如动图2-7所示。 (动图2-7) UI组件脚本就已经介绍完了,再复杂的UI都可以通过勾选组件声明,让ID...

来源: Laya3.0_文档 发布时间: 20241014

76. 通过laya设计模式制作的,要怎么给按钮绑定事件呢? [ 66%]

...内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: on(Event.MOUSE_DOWN,this,onClick); 试一下吧  onclick 函数里再打印log 2017-12-13 0 10 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 这个进度条 var 为pro 另外一张图的类继承了之前页面发布生成的...

来源: Laya_社区 发布时间: 20171213

77. Uncaught TypeError: Cannot read property 'XXX' of undefined [ 66%]

...t(0, 0, 515, 515, "#996633", "#333333");             spe.on(Event.MOUSE_DOWN, spe, onMouseDown);             Laya.stage.on(Event.MOUSE_UP, this, onMouseUp);             Laya.stage.on(Event.MOUSE_OUT, this, onMouseUp);   } private function onMouseDown(e:Event):void {    ...

来源: Laya_社区 发布时间: 20170407

78. 关于新手引导 [ 65%]

...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

79. 为什么点击图片会有穿透事件的功能??费解 [ 65%]

...的组件。 下面的圆形金币是图片,我添加了 on(Laya.Event.MOUSE_DOWN, this,this.mouseHandlerDown,); on(Laya.Event.MOUSE_UP, this,this.mouseHandlerUp,[i]);[/i] [i] [/i] [i]为什么在这个bg.png上面点击,下面的金币也会有点击事件?[/i] 附件 : --> 2018-01-31 添加...

来源: Laya_社区 发布时间: 20180131

80. 发布微信后无法触发mouse_up事件 [ 65%]

...始化资源加载完成 */ private initF():void{ Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseHandler); Laya.stage.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:...

来源: Laya_社区 发布时间: 20181102