大约有 280 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
Laya_社区(221) Laya2.0_文档(13) Laya3.0_api(11) laya_api(9) Laya2.0_api(8) Laya3.0_文档(7) Laya_示例(6) Laya2.0_示例(5)
..."res/bg1.png"); bg2.pos(650, 0); box.addChild(bg2); Laya.timer.frameLoop(1, this, bg_loop()); } function bg_loop() { box.x -= 1; if (bg1.x + box.x <= 0) { bg1.y = 650 } if (bg2.x + box.x <= 0) { bg2.x = 650 } } bg_rolling(...
来源: Laya_社区 发布时间: 20160721
...帧频旋转", rotateTimeBasedText.x, rotateTimeBasedText.y + vGap); Laya.timer.loop(200, this, animateTimeBased); Laya.timer.frameLoop(2, this, animateFrameRateBased); } function createText(text, x, y) { var t = new Text(); t.text = text; t.fontSize = 30; t.color = "white"; t.bold = true; t.pivot(t...
来源: Laya_示例 发布时间: 20241117
...?: number): void { if (vibrateObj.view) { Laya.timer.clearAll(vibrateObj); //说明上一次的动画还没完成 vibrateObj.view.x = vibrateObj.x; vibrateObj.view.y = vibrateObj.y; vibrateObj.view.rotati...
来源: Laya_社区 发布时间: 20190401
...6 • 2018-07-27 11:01 @Laya_Aaron:那我想问一下, 1、如果在Laya.timer.loop里每秒创建一个Laya.TimeLine(),会不会对掉帧有比较大的影响? 2、Laya.timer.loop里在限制条件下调用一个Laya.timer.once对掉帧有没有大的影响? 3、Laya.timer.loop里进行for...
来源: Laya_社区 发布时间: 20180727
无法清除指定定时器 发起一个定时器: Laya.timer.loop(1000,this,this.fan); 当执行 Laya.timer.clear(this,this.fan);时, 控制台还是在执行 fan 函数里的代码 2018-05-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...
来源: Laya_社区 发布时间: 20180508
... new Laya.Vector3(0, 0, 0.5); var scaleDelta = 0; var scaleValue = 0; Laya.timer.frameLoop(1, this, loop); function loop() { scaleValue = Math.sin(scaleDelta += 0.01); pos1.elements[0] = pos2.elements[0] = scaleValue * 13; pos1.elements[1] = Math.sin(scaleValue * 20) * 2; pos2.elements[1] = Math.sin...
来源: Laya_示例 发布时间: 20241117
...;anonymous> (http://127.0.0.1:10656/game/js/bundle.js:1196:16) at TimerHandler.__proto.run (http://127.0.0.1:10656/game/js/bundle.js:8352:45) at Timer.__proto._update (http://127.0.0.1:10656/game/js/bundle.js:8101:15) at Stage.__proto.render (http://127.0.0.1:10656/game/js/bundl...
来源: Laya_社区 发布时间: 20181123
Laya.timer缩放问题 Laya.timer.loop(1,this,this.fun);将Laya.timer.scale = 0.1;没有效果; Laya.timer.frameLoop(1,this,this.fun)将Laya.timer.scale = 0.1;则可以看到方法调用的频率变低了,这是为什么? 2019-10-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...
来源: Laya_社区 发布时间: 20191031
...s.prototype.init = function() { Laya.stage.addChild(this); this.bg(); Laya.timer.frameLoop(1, this, this.loop); }; Class.prototype.bg = function() { for (var i = 0; i < 2; i++) { this.img[i] = new Laya.Image('background.png'); this.addChild(this.img[i]); } this.img[0].y = 0; this.img[1].y = -852;...
来源: Laya_社区 发布时间: 20170619
关于定时器嵌套问题 假设有一个定时器laya.timer.loop(1000,this,update),在update方法中包含另一个定时器laya.timer.loop(1000,this,show),这种情况两者会互相产生干扰吗?还是各算各的时间? 2018-04-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...
来源: Laya_社区 发布时间: 20180405