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

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

31. 要做一个方形倒计时,请问该怎么实现,不知道该怎么做 [ 61%]

...Game.GetServerTime() : startTime_ ); this.endTime = startTime + time; Laya.timer.loop(1,this,ef); isCd = true; } public function stop():void { this.set360(-1); Laya.timer.clear(this,ef); isCd = false; } } }   2017-11-24 1 2 分享 微博 QZONE 微信 wudi199553 赞同来自: 计时器属于简单...

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

32. drawTexture 画出来的数据会有以前的数据 [ 61%]

...ame1():void { xNum = Math.random()*7 - 3; yNum = Math.random()*7 - 3; Laya.timer.loop(20,this,onRun); Laya.timer.frameLoop(10,this,refresh); } private function refresh():void { IconSpr.graphics.clear(); iconSpr.graphics.clear(); if(htmlCanvas) htmlCanvas.clear(); htmlCanvas = iconSpr.drawToCanvas(ic...

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

33. Socket连接不上(已解决) [ 60%]

...txt.text = "Start conect";                          Laya.timer.loop(1000, this, checkSocket);         }                  private function checkSocket(e:* = null):void{             txt.text = socket.connected ? "Now connect" : "Not conect";         }...

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

34. list 中的scrollbar [ 60%]

...lastPoint.setTo(Laya.stage.mouseX,Laya.stage.mouseY);         Laya.timer.clear(this,this.tweenMove);         Tween.clearTween(this);         Laya.stage.once(/*laya.events.Event.MOUSE_UP*/"mouseup",this,this.onStageMouseUp2);         Laya.stage.once(/*laya.events.Event...

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

35. destory方法怎么用? [ 60%]

...? 用removeself()方法删除了某个对象,但是预预期绑定的timer.loop事件还是在运行,应该如何彻底销毁掉一个对象? 2018-06-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 Laya_...

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

36. 关于裁剪的问题 [ 60%]

...ar.viewport = new laya.maths.Rectangle(0, 0, 0, loginUI.bbbar.height) Game.timer.loop("progress", this, function() { //console.log("loginUI.bar.value = ", loginUI.bar.value); loginUI.bbbar.viewport.width = loginUI.bbbar.viewport.width + 0.2 //console.log("loginUI.bbbar.viewport.width = ", loginUI.bb...

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

37. 自定义对话框设置zOrder后,关闭时报错 [ 59%]

...zOrder = 100; this.count = 4; this.countLabel.text = '' + this.count; Laya.timer.loop(1000, this, this.countdown); } Laya.class(countdownBar, "CountdownBar", CountdownUI); return countdownBar; }()); CountdownBar.prototype.countdown = function () { this.count--; if (this.count > 0) { this.countLab...

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

38. var mid=method.$_TID || (method.$_TID=(this._mid++)*100000); [ 58%]

...l不能使用 reflection error: can not find method signature 反射错误 Timer.clear清理同caller同method的多个loop 问题状态 最新活动: 2019-05-21 20:59 浏览: 815 关注: 2 人

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

39. 资源加载 · LayaAir3.0文档 · LAYABOX [ 58%]

...e(); this.owner.addChild(sp); let i: number = 0; //每秒重画一次 Laya.timer.loop(1000, this, () => { i == res.length && (i = 0); //清除sp节点的所有绘图(不含子节点) sp.graphics.clear(); //在sp节点上重绘纹理 sp.graphics.drawTexture(res[i]); i++; }); }); } } 2....

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

40. laya.display.AnimationPlayerBase [ 58%]

...被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.timer。Node transform : Matrix 对象的矩阵信息。通过设置矩阵可以实现节点旋转,缩放,位移效果。 矩阵更多信息请参考 Matrix Sprite viewport : ...

来源: laya_api 发布时间: 20170929