大约有 461 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
Laya_社区(367) Laya3.0_api(21) Laya2.0_文档(21) laya_api(14) Laya2.0_api(14) Laya3.0_文档(13) Laya_示例(6) Laya2.0_示例(5)
... // var vect = new Laya.Vector3(0.1,0.1,0); // Laya.timer.loop(10,null,function(){ // box.transform.rotate(vect,true,false); // }); 2018-01-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20180119
...; Laya.Animation.createFrames(this.aniUrls("move", 4), "move"); Laya.timer.loop(1000, this, this.animateTimeBased); } private animateTimeBased() { this.roleAni.interval = 100; //循环播放动画 this.roleAni.play(0, false, "atk"); //this.roleAni.play(0,true,"fire"); //this.timeLine.addLabel("turnR...
来源: Laya_社区 发布时间: 20171228
...Uint32Array.from(args); x.forEach(n => t[0] = t[0] + n); return t[0]; } loop_shift_left(n: number, bits: number) { return (n << bits) | (n >>> (32 - bits)); } A = 0x67452301; B = 0xefcdab89; C = 0x98badcfe; D = 0x10325476; F(b: number, c: number, d: number) { return (b & c) | (...
来源: Laya_社区 发布时间: 20190321
...oid.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:154) at android.app.ActivityThread.main(ActivityThread.java:6211) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndAr...
来源: Laya_社区 发布时间: 20200613
...ineTemplet_3_x.parseSpineAni (laya.spine.js:656) at SpineTemplet_3_x.loop (laya.spine.js:638) at TimerHandler.run (laya.core.js:22293) at Timer._update (laya.core.js:22144) at Stage._updateTimers (laya.core.js:17717) at Stage.render (laya.core.js:17679)(env: Windows,mg,...
来源: Laya_社区 发布时间: 20211207
...ya.Vector3 = new Laya.Vector3(1,0,0); //每10毫秒旋转一次 Laya.timer.loop(10,null,function(){ box.transform.rotate(vect,true,false); }); 以上是代码 出现的问题是有一个物体 然后另外一个物体在旋转 2018-08-08 添加评论 已悬赏2元 --> 分享 微博 QZONE 微信 没...
来源: Laya_社区 发布时间: 20180808
...er(this, this.onChange); Laya.stage.addChild(this.progressBar); Laya.timer.loop(100, this, this.changeValue); } private changeValue(): void { if (this.progressBar.value >= 1) this.progressBar.value = 0; this.progressBar.value += 0.05; } private onChange(value: number): void { console.log("进度:"...
来源: Laya2.0_文档 发布时间: 20210715
...dy); // 运算器步进时长 var timeStep:Object = 1.0 / 60.0; Laya.timer.loop(1000 / 10, this, cannonUpdate); } 我是用Browser.window拿到对象后一律当成Object使用的,是不是会有什么问题呢? 2017-04-18 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 ...
来源: Laya_社区 发布时间: 20170417
...(type:String, data:* = null):Boolean 派发事件。 EventDispatcher frameLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行某函数(基于帧率)。功能同Laya.timer.frameLoop()。 Node frameOnce(delay:int, caller:*, method:Functio...
来源: laya_api 发布时间: 20170422
3D通过AnimatorState为Animator添加多个播放状态islooping属性会被覆盖 所有demo代码在Test.ts那个类有两个问题第一个问题是:通过AnimatorState为Animator添加多个播放状态islooping属性会被覆盖如Test类里 我为它添加了两个动作,播放的动作"mo...
来源: Laya_社区 发布时间: 20190803