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

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

21. 打飞机点开始游戏加载飞机动画不出来,点重新开始,才出来,新手求助! [ 82%]

... function onLoaded() { start = new GameStartUI(); start.btn_start.on(Event.MOUSE_UP,this,gameInit) Laya.stage.addChild(start); } function gameInit() { map = new GameBgUI(); Laya.stage.addChild(map); play = new GamPlayUI(); Laya.stage.addChild(play); hero = new Hero("hero", 25) hero.pos(100,200) Laya...

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

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

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

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

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

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

24. 在微信分享成功的回调函数里,Laya播放音效失败。 [ 81%]

...SE_DOWN); Laya.stage.off(Laya.Event.MOUSE_MOVE); Laya.stage.off(Laya.Event.MOUSE_UP) Laya.stage.off(Laya.Event.MOUSE_OUT);  // 鼠标按下事件 Laya.stage.on(Laya.Event.MOUSE_DOWN, this.snakeSelf, this.snakeSelf.onMouseDown); Laya.stage.on(Laya.Event.MOUSE_UP, this.snakeSelf, this.snakeSelf.onMou...

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

25. 鼠标down事件怎么不一定触发up事件呀,快速拖动某个物品是否只能检测down,不能检测到up,很奇怪的机制 [ 81%]

...w1114367261: spr.on(Event.MOUSE_DOWN, this, onStartDrag,arr); spr.on(Event.MOUSE_UP,this, onStopDrag,arr);,我就这两个函数,监听spr,这个sprite对象,然后再舞台上死命甩,就有可能会导致up事件不会触发呢,我都要打印,down执行拖拽,up停止拖拽 lengy...

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

26. Animation组件on绑定的Laya.Event.CLICK无法触发 [ 80%]

...卡片销毁等动画,Animation.on绑定的Laya.Event.CLICK、Laya.Event.MOUSE_UP、Laya.Event.MOUSE_DOWN都无法触发。我的card卡片类继承子Laya.Sprite。详细代码见附件,unity转laya萌新一个项目比较急,没有很多学习时间谢谢哪位热心大大看下。 附件 : ...

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

27. 自动旋转后残影 [ 80%]

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

28. 文字在框内滑动、滚动文本 [ 79%]

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

29. Laya.stage.mouseX; Laya.stage.mouseY取到的坐标用来赋给画曲线方法的起点;在左顶点正常,越往右下角起点就越偏移了 [ 79%]

...stage.on(Laya.Event.MOUSE_DOWN, this, this.down2) Laya.stage.on(Laya.Event.MOUSE_UP, this, this.up2) Laya.stage.addChild(this.ps); } down2() { this.a = Laya.stage.mouseX; this.b = Laya.stage.mouseY; console.log("鼠标点击的点" + this.a, this.b) Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mo...

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

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

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