大约有 482 项符合查询结果, 库内数据总量为 31,722 项。 (搜索耗时: 0.0063 秒)
Laya_社区(378) Laya3.0_文档(23) Laya3.0_api(21) Laya2.0_文档(21) Laya2.0_api(14) laya_api(14) Laya_示例(6) Laya2.0_示例(5)
...ayaAir提供两种计时器循环来执行代码块。 1. `Laya.timer.frameLoop`执行频率依赖于帧频率,可通过Stat.FPS查看当前帧频。 2. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```javascript Laya.timer.frameLoop(1, this, animateFrameRateBased); Laya.stage.on("...
来源: Laya2.0_文档 发布时间: 20210715
...ayaAir提供两种计时器循环来执行代码块。 1. `Laya.timer.frameLoop`执行频率依赖于帧频率,可通过Stat.FPS查看当前帧频。 1. `Laya.timer.loop`执行频率依赖于参数指定时间。 ```javascript Laya.timer.frameLoop(1, this, animateFrameRateBased); Laya.stage.on("cl...
来源: Laya2.0_文档 发布时间: 20210715
... at android.os.Looper.loop(Looper.java:156) at android.app.ActivityThread.main(ActivityThread.java:5109) 附件 : --> err_log.rar 2017-12-...
来源: Laya_社区 发布时间: 20171225
...igidBody.linearVelocity = new Laya.Vector3(0,0,-1); Laya.timer.loop(2000, this, function(){console.log(rigidBody.linearVelocity.z)}); } } //激活启动类 new PhysicsWorldBaseCollider(); 2019-10-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20191009
...dBody); // 运算器步进时长 var timeStep:Object=1.0 / 60.0; box.timer.loop(1000/60,this,cannonUpdate); } private function cannonUpdate():void{ // 循环步进驱动解算 world.step(1.0 / 60.0); if(box.timer.currFrame %500 == 0){ sphereBody.velocity = new CANNON.Vec3(0,0,20) as Object; } box.tr...
来源: Laya_社区 发布时间: 20170331
...:03:47.977 27945-27945/com.twand.kozhanji I/art: at void android.os.Looper.loop() (Looper.java:163) 06-27 18:03:47.977 27945-27945/com.twand.kozhanji I/art: at void android.app.ActivityThread.main(java.lang.String) (ActivityThread.java:6342) 06-27 18:03:47.977 27945-27945/com.twand.koz...
来源: Laya_社区 发布时间: 20191016
...(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...
来源: Laya2.0_api 发布时间: 20190513
...33.840 27966-27966/com.lovegame.hk.hokbok I/art: at void android.os.Looper.loop() (Looper.java:154) 2019-07-22 18:03:33.840 27966-27966/com.lovegame.hk.hokbok I/art: at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:6682) 2019-07-22 18:03:33.840 27966-279...
来源: Laya_社区 发布时间: 20190722
...369) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:135) at android.app.ActivityThread.main(ActivityThread.java:5418) at java.lang.reflect.Method.invoke(Native Method) at java.lang.reflect.Method.invoke(Method.java:372) at com.android.internal.os.Zygote...
来源: Laya_社区 发布时间: 20210830
...: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(iconSpr....
来源: Laya_社区 发布时间: 20180113