大约有 469 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
Laya_社区(171) Laya3.0_api(80) Laya2.0_api(74) laya_api(69) Laya_示例(30) Laya2.0_文档(26) Laya2.0_示例(12) Laya3.0_文档(7)
Laya.timer.frameLoop(1, this, onLoop); 的使用问题 使用这个方法 单独浏览器运行和微信扫二维码运行都 没问题 但是放到了小游戏 就一卡一卡一卡一卡 最后卡死了。 2018-07-02 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...
来源: Laya_社区 发布时间: 20180702
Laya.timer.frameLoop(1, this, this.aaa);对象移动会出现颤抖现象 this.loadHp(); Laya.timer.frameLoop(1, this, this.aaa); private bb:number = 6; private playerHB:logic.UI.role.PlayerHealthBar; private loadHp():void { this.playerHB = new logic.UI.role.PlayerHealthBar(); this.playerHB.pivotX ...
来源: Laya_社区 发布时间: 20180102
frameLoop 函数,可以知道每帧调用的时间吗? Laya.timer.frameLoop(1,this,this.xx) 可以知道每次调用 this.xx的时间吗?如果有怎么得到。 2018-04-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...
来源: Laya_社区 发布时间: 20180410
...le Accessors delta Methods callLater clear clearAll clearCallLater destroy frameLoop frameOnce loop once pause resume runCallLater runTimer toString Constructors constructor new Timer(autoActive?: boolean): Timer Defined in laya/utils/Timer.ts:34 创建 Timer 类的一个实例。 Parameters Default...
来源: Laya3.0_api 发布时间: 20231115
...时间和其他一些Timer相关的问题 问一下 1.当使用Laya.timer.frameLoop时,是否前一贞到这一贞之间的deltaTime只有通过主动从laya.utils.Timer里去获取delta值才能得到?还是说有类似Unity3D中继承并override一个特定类(Unity3D中的MonoBehaviour)中的...
来源: Laya_社区 发布时间: 20160825
...背景音乐 Skeleton动画在自然停止时不会移除play时添加的frameloop 如何停止所有音效而不停止背景声音 在编辑器中做好的动画,应该如何在代码中手动让他停止下来,不再播放 如何停止整个游戏 怎么停止正在运行Laya.timer.frameLoop...
来源: Laya_社区 发布时间: 20170605
... clearAll(caller:*):void 清理对象身上的所有定时器。 Timer frameLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行(基于帧率)。 Timer frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:B...
来源: laya_api 发布时间: 20170929
... clearAll(caller:*):void 清理对象身上的所有定时器。 Timer frameLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行(基于帧率)。 Timer frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:B...
来源: Laya2.0_api 发布时间: 20190513
...。 假如说 Tween有问题,那么我们换一种作法,用Laya.timer.frameLoop方法,让rotation-=5循环时,到0也有偏差,mc.rotation不能准确的等于0.也就是说牌不能垂直展示总是有些斜。 mc.rotation=30; Laya.timer.frameLoop(1,this,onLoop); private functi...
来源: Laya_社区 发布时间: 20171228
...t.y + vGap); Laya.timer.loop(200, this, this.animateTimeBased); Laya.timer.frameLoop(2, this, this.animateFrameRateBased); } createText(text, x, y) { const Text = Laya.Text; let t = new Text(); t.text = text; t.fontSize = 30; t.color = "white"; t.bold = true; t.pivot(t.width / 2, t.height / 2); t.po...
来源: Laya2.0_示例 发布时间: 20241117