大约有 87 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
Laya_社区(62) Laya_示例(6) Laya2.0_示例(6) Laya2.0_文档(6) laya_api(2) Laya3.0_api(2) Laya2.0_api(2) Laya3.0_文档(1)
...t i = 0; i < 4; i++) { ape = new Sprite(); this.apesCon.addChild(ape); ape.loadImage(`res/apes/monkey${i}.png`); ape.pivot(55, 72).pos( Math.cos(radianUnit * i) * layoutRadius, Math.sin(radianUnit * i) * layoutRadius ); } this.apesCon.pos(Laya.stage.width / 2, Laya.stage.height / 2); Laya.timer.fram...
来源: Laya2.0_示例 发布时间: 20241117
...4张猩猩图片 for (var i = 0; i < 4; i++) { var ape = new Sprite(); ape.loadImage("../../res/apes/monkey" + i + ".png"); ape.pivot(55, 72); // 以圆周排列猩猩 ape.pos( Math.cos(radianUnit * i) * layoutRadius, Math.sin(radianUnit * i) * layoutRadius); apesCtn.addChild(ape); } apesCtn.pos(Lay...
来源: Laya_示例 发布时间: 20241117
...gColor = "#232628"; Stat.show(); // create a background texture Laya.stage.loadImage("res/pixi/laserBG.jpg"); Laya.stage.frameLoop(1, this, this.animate); } animate() { const Sprite = Laya.Sprite, Point = Laya.Point; let laser; if (tick > frequency) { tick = 0; // iterate through the dudes and updat...
来源: Laya2.0_示例 发布时间: 20241117
...png"], "hero_fly"); var animation:Animation = new Animation(); //animation.loadImages(["war/hero_fly1.png", "war/hero_fly2.png"], "hero_fly"); Laya.stage.addChild(animation); animation.play(0, true, "hero_fly"); } } } 假如使用注释里的LoadImage()则可以 2016-10-26 添加评论 免费帖 -->...
来源: Laya_社区 发布时间: 20161026
...画的播放实质就是定时切换Graphics对象。 使用set source、loadImages(...)、loadAtlas(...)、loadAnimation(...)方法可以创建动画模版。使用play(...)可以播放指定动画。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefin...
来源: laya_api 发布时间: 20170929
... Laya.init(400, 400, laya.webgl.WebGL); var img1 = new Laya.Sprite(); img1.loadImage('https://layaair.ldc.layabox.com/demo/h5/res/apes/monkey2.png',100,100,90,90); Laya.stage.addChild(img1); img1.on(Laya.Event.CLICK,this, function(name){ console.log(name);},['图1']); var img2 = new Laya.Sprite(); i...
来源: Laya_社区 发布时间: 20180621
...e.js:1577) at onloaded (laya.core.js:1864) at Graphics.__proto.loadImage (laya.core.js:1860) at Function.Animation.createFrames (laya.core.js:17617) at Animation.__proto.loadImages (laya.core.js:17445) at start (laya.js:77) at onAssetLoaded (laya.js:47) at H...
来源: Laya_社区 发布时间: 20170719
...画的播放实质就是定时切换Graphics对象。 使用set source、loadImages(...)、loadAtlas(...)、loadAnimation(...)方法可以创建动画模版。使用play(...)可以播放指定动画。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefin...
来源: Laya2.0_api 发布时间: 20190513
...me设置了以后又有什么用?API同样没有说明如何使用。 3. loadImages(urls:Array, cacheName:String):Animation 加载图片集合,组成动画。这里的加载图片集合是打包图集之前的那些小图?既然能直接加载小图,何必再打包成图集呢?加载图片...
来源: Laya_社区 发布时间: 20170314
...源文件都需要先加载在使用,但是Animation方法只能使用 loadImages loadAtlas,每次使用时加载,在网络情况不稳定时回出现闪屏,能否增加一个读取缓存文件都方法 2019-07-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20190724