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

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

31. 循环添加一组按钮事件无法正常使用 [ 76%]

...nt.MOUSE_MOVE, this, mouseHandler);                 b.on(Event.MOUSE_UP, this, mouseHandler);                 trace("addEvent");             }         }         private function mouseHandler(e:Event=null)         {             trace("mouseE...

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

32. 发现bug,update大问题!!!!!!!!! 2.13版本 [ 76%]

...t.MOUSE_DOWN,this, this.onleft)         this.view.m_left.on(Laya.Event.MOUSE_UP,this, this.notleft)         this.view.m_right.on(Laya.Event.MOUSE_DOWN,this, this.onright)         this.view.m_right.on(Laya.Event.MOUSE_UP,this, this.notright)         this.view.m_left.onClick(this, this...

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

33. CameraMoveScript.as在哪儿下载群里的有错 [ 75%]

...er); Laya.stage.on(Event.MOUSE_DOWN, this, mouseDown); Laya.stage.on(Event.MOUSE_UP, this, mouseUp); Laya.stage.on(Event.MOUSE_OUT, this, mouseOut); var camera:BaseCamera = owner.scene.currentCamera; 没有了 -- currentCamera 2017-02-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...

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

34. sprite点击事件 位置便宜 [ 74%]

...鼠标事件 rect.on(Event.MOUSE_DOWN, this, mouseHandler); rect.on(Event.MOUSE_UP, this, mouseHandler); rect.on(Event.CLICK, this, mouseHandler); rect.on(Event.RIGHT_MOUSE_DOWN, this, mouseHandler); rect.on(Event.RIGHT_MOUSE_UP, this, mouseHandler); rect.on(Event.RIGHT_CLICK, this, mouseHandler); r...

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

35. 加载-销毁Texture使用的图片资源 [ 74%]

...(20, 160); Laya.stage.addChild(this.btn); //添加侦听 this.btn.on(Event.MOUSE_UP, this, this.onMouseUp); } /** * 鼠标事件响应函数 * @param evt */ onMouseUp(evt) { if (this.isDestroyed) { //通过设置 visible=true ,来触发渲染,然后引擎会自动恢复资源 this.spBg.visible =...

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

36. 文字在框内滑动、滚动文本 [ 74%]

...a.Event.MOUSE_MOVE, this, this.scrollText);     Laya.stage.on(Laya.Event.MOUSE_UP, this, this.finishScroll); } function finishScroll(){     Laya.stage.off(Laya.Event.MOUSE_MOVE, this, this.scrollText);     Laya.stage.off(Laya.Event.MOUSE_UP, this, this.finishScroll); } function scrollText(){ ...

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

37. 那个文本溢出需要滚动条怎么弄,API里面就说用Scroll接口,小白 不懂怎么弄 [ 74%]

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

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

38. 加载-销毁Texture使用的图片资源 [ 74%]

...(20, 160); Laya.stage.addChild(this.btn); //添加侦听 this.btn.on(Event.MOUSE_UP, this, this.onMouseUp); }; /** * 鼠标事件响应函数 * @param evt */ GameMain.prototype.onMouseUp = function (evt) { if (this.isDestroyed) { //通过设置 visible=true ,来触发渲染,然后引擎会自动...

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

39. 请问在手机里在屏幕上按下,然后滑动,然后离开屏幕表面(未超出屏幕范围)会触发哪些事件? [ 73%]

...(未超出屏幕范围)会触发哪些事件? MOUSE_DOWN MOUSE_OVER MOUSE_UP? 会触发MOUSE_OUT吗? 因为在LayaIDE里难以模拟手机上的操作,而手机上又看不了打印,所以才问一下。 2018-04-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...

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

40. 自动旋转后残影 [ 73%]

...moveHandler); _tip.off(Event.MOUSE_DOWN,this,_downHandler); _tip.off(Event.MOUSE_UP,this,_upHandler); _tip.destroy(); } _tip = new Sprite(); _tip.graphics.drawRect(0,0,100,100,"#FFFFFF"); _tip.size(100,100); _tip.on(Event.MOUSE_DOWN,this,_downHandler); _tip.on(Event.MOUSE_UP,this,_upHandle...

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