大约有 277 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0052 秒)
Laya_社区(221) Laya3.0_api(11) Laya2.0_文档(10) laya_api(9) Laya2.0_api(8) Laya3.0_文档(7) Laya_示例(6) Laya2.0_示例(5)
...ite(); sp2.pos(300, 500); Laya.stage.addChild(sp2); let r: number = 0 Laya.timer.loop(100, this, () => { if (r >= 360) r = 0; r++; sp.graphics.clear(true); sp.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); sp2.graphics.clear(true); sp2.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); }) 附件 : -->...
来源: Laya_社区 发布时间: 20190701
... // 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.timer.loop()如何停止 Laya2.6.0beta 物理引擎 刚体碰撞点位置获取不正确 ios14系统下 blendMode='lighter' 图片异常 Laya2.0 WebGl模式,使用 drawToCanvas 报错 ImageData is not defined? 求教: sou...
来源: Laya_社区 发布时间: 20170628
..."atk"); 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(...
来源: Laya_社区 发布时间: 20171228
...e scrollRect skewX skewY skinName source stage staticCache templet texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addAnimation addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer contains customRender de...
来源: Laya3.0_api 发布时间: 20231115
...ect:Laya.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
....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,1.05.2110152; lib: 2.20.2) 附件 ...
来源: Laya_社区 发布时间: 20211207
...被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.timer。Node transform : Matrix 对象的矩阵信息。通过设置矩阵可以实现节点旋转,缩放,位移效果。 矩阵更多信息请参考 Matrix Sprite viewport : ...
来源: laya_api 发布时间: 20170929
... Handler(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
... Sprite(); Laya.stage.addChild(sp); //每隔0.05秒出现下张图片 Laya.timer.loop(50,this,onLoop); } private function onLoop():void { //更改texture的纹理,逐一显示不同的image chageTexture(); //如果texture有值,进行绘制并排序 if(texture) { sp.graphics.drawTexture(texture,...
来源: Laya_社区 发布时间: 20161107