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

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

21. 模拟鼠标事件 [ 63%]

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

22. 为对象创建Laya.Event.MOUSE_UP 和 Laya.Event.CLICK 事件的问题,, [ 61%]

...能肯定很多游戏里面都需要的,, 阿呆 • 2020-09-22 21:34 mouse_move和mouse_down 也可以用这方法吗?

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

23. 发布微信后无法触发mouse_up事件 [ 60%]

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

24. Laya.stage.on的Mouse事件,正常情况下没问题,但是Laya.stage.pos移动后就失灵了,请问如何解决? [ 60%]

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

25. [0]Event.Mouse_Drag和Event.Mouse_Drag_End在不注册鼠标事件的情况下无法 [ 59%]

...USE_EVENTS = new Set([         Event.MOUSE_DOWN, Event.MOUSE_UP, Event.MOUSE_MOVE, Event.CLICK, Event.DOUBLE_CLICK,         Event.RIGHT_CLICK, Event.RIGHT_MOUSE_DOWN, Event.RIGHT_MOUSE_UP,         Event.MOUSE_OVER, Event.MOUSE_OUT, Event.MOUSE_WHEEL     ]);         static isMouseEv...

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

26. 关于微信小游戏下的MOUSE_UP事件touches问题 [ 59%]

...么?微信小游戏环境下的手指事件用MOUSE_UP和MOUSE_EVENT、MOUSE_MOVE对不对?   ================================================================================= 问题最后解决了,微信上确实存在onTouchEnd时touches数组包含了已经抬起的手指touch信息,但...

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

27. 基础文本 · LayaAir3.0文档 · LAYABOX [ 56%]

...prevX = this.txt.mouseX; prevY = this.txt.mouseY; Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.finishScrollText); } /* 停止滚动文本 */ finishScrollText() { Laya.stage.off(Laya.Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.off...

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

28. 如何能监听到TouchStart和TouchEnd事件 [ 41%]

...定义 mousemove 事件对象的 type 属性值。*/         static MOUSE_MOVE: string;         /** 定义 mouseover 事件对象的 type 属性值。*/         static MOUSE_OVER: string;         /** 定义 mouseout 事件对象的 type 属性值。*/         stati...

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

29. UI-RefreshList [ 36%]

...tage.mouseY)); //鼠标按下的时候进行移动侦听 e.target.on(Event.MOUSE_MOVE, this, this.onItemBoxMouseMove, [e.target, index]); } } if (e.type == Event.MOUSE_UP) { this.mouseDown = false; this.itemOnMouseUp(); } //点击标记文本 if (e.target.name == "flag" && e.type == Event.CLICK) thi...

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