大约有 469 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
Laya_社区(171) Laya3.0_api(80) Laya2.0_api(74) laya_api(69) Laya_示例(30) Laya2.0_文档(26) Laya2.0_示例(12) Laya3.0_文档(7)
...ontSize = 60; text.color = "#ff0000" Laya.stage.addChild(text); Laya.timer.frameLoop(1, this, this.gameLoop); } createCharacters() { let char; let charSkin; for (let i = 0; i = 0; i--) { characters[i].update(); } if (Laya.timer.currFrame % 60 === 0) { text.text = Stat.FPS.toString(); } } } class Cha...
来源: Laya2.0_示例 发布时间: 20241118
...ild(testView); pie = new Sprite(); Laya.stage.addChild(pie); Laya.timer.frameLoop(1,this,onLoop); } private var curAngle:Number = 0; private function onLoop():void { pie.graphics.drawPie(300,300,100,curAngle,curAngle+1,"#000000"); curAngle+=1; if(curAngle>360) { Laya.timer.clear(this,onLoop...
来源: Laya_社区 发布时间: 20180725
...2-31 10:16 @昵称syy的是猪:Laya.timer.loop()也可以用啊 Laya.timer.frameLoop()
来源: Laya_社区 发布时间: 20181120
...event(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:Fu...
来源: Laya2.0_api 发布时间: 20190513
...nt callLater clear clearTimer clone contains destroy destroyChildren event frameLoop frameOnce getChildAt getChildByName getChildIndex getComponent getComponents getLine hasHideFlag hasListener isAncestorOf off offAll offAllCaller on onAfterDeserialize onAwake onDestroy onDisable onEnable once remov...
来源: Laya3.0_api 发布时间: 20231115
...te(this, onComplete)); var _quaternion = new Laya.Quaternion(); Laya.timer.frameLoop(1, null, function () { Laya.Quaternion.createFromYawPitchRoll(0.025, 0, 0, _quaternion); var _direction = directionLight.direction; Laya.Vector3.transformQuat(_direction, _quaternion, _direction); directionLight.dir...
来源: Laya_示例 发布时间: 20241118
...赞同来自: SWF支持ENTER_FRAME事件,其他地方请使用Laya.timer.frameLoop()方法替代! 2017-02-09 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 问题状态 最新活动: 2017-02-09 17:01 浏览: 1011 关注: 1 人
来源: Laya_社区 发布时间: 20170209
...容相关的链接 提交 1 个回复 Laya_XS 赞同来自: 你timer改成frameLoop测试下,别用基于时间的,用基于帧循环! 2017-02-28 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 相关问题 做好的粒子特效在U3D里循...
来源: Laya_社区 发布时间: 20170228
... 与内容相关的链接 提交 1 个回复 yung 赞同来自: Laya.timer.frameLoop(1,this,onLoop); 2018-05-14 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 135*****194 相关问题 dialog 自定义关闭效果,效果执行完,弹...
来源: Laya_社区 发布时间: 20180512
...ball.png"); this.body.pivot(12,12); } this.addChild(this.body); Laya.timer.frameLoop(1,this,this.animate); } private animate(e):void{ this.body.rotation += 10; } } class Main{ private ball:Ball; private targetX:number = 600; private targetY:number = 300; private centerX:number = 0; private centerY:...
来源: Laya_社区 发布时间: 20171108