大约有 617 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
Laya_社区(371) Laya3.0_api(64) Laya2.0_api(59) laya_api(55) Laya2.0_文档(24) Laya2.0_示例(19) Laya_示例(19) Laya3.0_文档(6)
...ya.wxmini.js中MinAspter的init方法里添加一行Laya.Loader.prototype._loadImage = MiniImage.prototype._loadImage;即可正常 附件 : --> 2019-12-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron ...
来源: Laya_社区 发布时间: 20191210
...r z = 0; z < letterList.length; z++){ var letter = new Sprite(); letter.loadImage("../imgs/linkup/" + letterList[z] + ".png", (bg.width / letterList.length) * z, 0, bg.width / letterList.length, bg.height / 2); Laya.stage.addChild(letter); letter.on("click", this, (function(para){ console.log("z:...
来源: Laya_社区 发布时间: 20180810
...bg_" + nums; userBoxSprite.addChild(sb); userBoxSprite.addChild(sp); // sb.loadImage(newBg1, x, y, singleWidth, singleHeight); sb.skin = newBg1; sb.pos(x,y); sb.size(singleWidth, singleHeight); // sp.loadImage(imgUrl, x, y, singleWidth, singleHeight); sp.skin = imgUrl; sp.pos(x,y); sp.size(singleWid...
来源: Laya_社区 发布时间: 20180427
...olor = "#232628"; showApe(); })(); function showApe() { // 方法1:使用loadImage var p = Laya.stage.addChild(new Sprite()); var ape = new Sprite(); p.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); //创建遮罩对象 this.cMask = new Laya.Sprite(); //画一个圆形的遮罩区域 ...
来源: Laya_社区 发布时间: 20180313
...t:Laya.Sprite; constructor() { super() this.bt = new Laya.Sprite() this.bt.loadImage("res/boat.png") this.addChild(this.bt) } } /** * 游戏背景 */ class BackGround extends Laya.Sprite { //背景图 private bg:Laya.Sprite; constructor(){ super(); this.init(); } init():void{ this.bg = new Laya.Spri...
来源: Laya_社区 发布时间: 20160804
...e是不可取的。如果设置了size,autoSize将不起效。 使用loadImage后获取宽高: ```javascript var sp:Sprite = new Sprite(); sp.loadImage("res/apes/monkey2.png", 0, 0, 0, 0, Handler.create(this, function() { console.log(sp.width, sp.height); })); Laya.stage.a...
来源: Laya2.0_文档 发布时间: 20210715
...oSize是不可取的。如果设置了size,autoSize将不起效。 使用loadImage后获取宽高: ```javascript var sp=new Laya.Sprite(); sp.loadImage("res/apes/monkey2.png",0,0,0,0,Laya.Handler.create(this,function() { console.log(sp.width,sp.height); })); Laya.stage.addChild(sp); ``` loadImag...
来源: Laya2.0_文档 发布时间: 20210715
...背景1 this.bg1 = new Laya.Sprite(); //加载并显示背景图 this.bg1.loadImage("war/bc.png"); //把背景1放在容器中 this.addChild(this.bg1); //创建游戏背景2 this.bg2 = new Laya.Sprite(); //加载并显示背景图 this.bg2.loadImage("war/bc.png"); //更改背景2,放在背景1的...
来源: Laya_社区 发布时间: 20191018
...liqunyang 赞同来自: // test drawToCanvas const sp1 = new Sprite(); sp1.loadImage('bet/cheer_1_3.png'); const sp2 = new Sprite(); sp2.x = 100; sp2.loadImage('bet/cheer_1_4.png'); sp1.addChild(sp2); this.addChild(sp1); const htmlCanvas = sp1.drawToCanvas(640, 200, 0, 0); const canvas = htmlCanvas....
来源: Laya_社区 发布时间: 20171018
...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