大约有 80 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0039 秒)
...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
...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
...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
...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
...? 用removeself()方法删除了某个对象,但是预预期绑定的timer.loop事件还是在运行,应该如何彻底销毁掉一个对象? 2018-06-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 Laya_...
来源: Laya_社区 发布时间: 20180605
...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
...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
...l不能使用 reflection error: can not find method signature 反射错误 Timer.clear清理同caller同method的多个loop 问题状态 最新活动: 2019-05-21 20:59 浏览: 815 关注: 2 人
来源: Laya_社区 发布时间: 20190117
...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
...被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.timer。Node transform : Matrix 对象的矩阵信息。通过设置矩阵可以实现节点旋转,缩放,位移效果。 矩阵更多信息请参考 Matrix Sprite viewport : ...
来源: laya_api 发布时间: 20170929