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

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

11. VRCameraScript中 stage 一直有mouse_up的监听事件,导致 Radio 按钮有点击穿透的问题,该如何进行stopPropagation()? [ 95%]

VRCameraScript中 stage 一直有mouse_up的监听事件,导致 Radio 按钮有点击穿透的问题,该如何进行stopPropagation()? VRCameraScript中 stage 一直有mouse_up的监听事件,导致 Radio 按钮有点击穿透的问题,该如何进行stopPropagation()? 2017-06-22 添加评...

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

12. Laya.Event.MOUSE_UP会触发两次事件 [ 95%]

Laya.Event.MOUSE_UP会触发两次事件 在刷新网页后,第一次点击按钮时会造成触发两次事件(是监听Laya.Event.MOUSE_UP消息) 附件 : --> BlankSample.zip 2019-05-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...

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

13. 发布微信后无法触发mouse_up事件 [ 95%]

发布微信后无法触发mouse_up事件 /** 初始化资源加载完成 */ 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 mou...

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

14. 2D物理-碰撞过滤器 [ 91%]

...teHouse(); for (let i = 1; i mouseJoint).onMouseDown); Laya.stage.on(Event.MOUSE_UP, this, this.destoryJoint); Laya.stage.on(Event.MOUSE_OUT, this, this.destoryJoint); // 方案二,自己实现,可以实现更大程度的控制 // Laya.stage.on(Event.MOUSE_MOVE, this, this.mouseMove); // Laya.st...

来源: Laya2.0_示例 发布时间: 20241117

15. 鼠标交互-Hold [ 84%]

...hold Laya.timer.once(HOLD_TRIGGER_TIME, this, onHold); Laya.stage.on(Event.MOUSE_UP, this, onApeRelease); } function onHold() { Tween.to(ape, { "scaleX": 1, "scaleY": 1 }, 500, Ease.bounceOut); isApeHold = true; } /** 鼠标放开后停止hold */ function onApeRelease() { // 鼠标放开时,如果...

来源: Laya_示例 发布时间: 20241117

16. 鼠标交互-Hold [ 84%]

...Laya.timer.once(HOLD_TRIGGER_TIME, this, this.onHold); Laya.stage.on(Event.MOUSE_UP, this, this.onApeRelease); } onHold() { const Tween = Laya.Tween, Ease = Laya.Ease; Tween.to(this.ape, { "scaleX": 1, "scaleY": 1 }, 500, Ease.bounceOut); isApeHold = true; } /** 鼠标放开后停止hold */ onApeRel...

来源: Laya2.0_示例 发布时间: 20241117

17. 鼠标交互-滑动 [ 81%]

...E_MOVE, this, onMouseMove); buttonPosition = button.x; Laya.stage.on(Event.MOUSE_UP, this, onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, onMouseUp); } /**移到事件处理*/ function onMouseMove(e) { button.x = Math.max(Math.min(Laya.stage.mouseX, endPosition), beginPosition); } /**抬起事件...

来源: Laya_示例 发布时间: 20241117

18. 鼠标交互-滑动 [ 80%]

...is, this.onMouseMove); buttonPosition = this.button.x; Laya.stage.on(Event.MOUSE_UP, this, this.onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, this.onMouseUp); } /**移到事件处理*/ onMouseMove(e) { this.button.x = Math.max(Math.min(Laya.stage.mouseX, endPosition), beginPosition); } /**抬起...

来源: Laya2.0_示例 发布时间: 20241117

19. 文本-滚动文本 [ 80%]

...eY; Laya.stage.on(Event.MOUSE_MOVE, this, scrollText); Laya.stage.on(Event.MOUSE_UP, this, finishScrollText); } /* 停止滚动文本 */ function finishScrollText(e) { Laya.stage.off(Event.MOUSE_MOVE, this, scrollText); Laya.stage.off(Event.MOUSE_UP, this, finishScrollText); } /* 鼠标滚动文本 ...

来源: Laya_示例 发布时间: 20241117

20. 文本-滚动文本 [ 80%]

...aya.stage.on(Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.on(Event.MOUSE_UP, this, this.finishScrollText); } /* 停止滚动文本 */ finishScrollText(e) { const Event = Laya.Event; Laya.stage.off(Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.off(Event.MOUSE_UP, this, this.finishScrol...

来源: Laya2.0_示例 发布时间: 20241117