• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 617 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)

141. Laya2.3.0设置basePath后,打包微信Laya.Texture2D.load图片失败 [ 68%]

...ya.wxmini.js中MinAspter的init方法里添加一行Laya.Loader.prototype._loadImage = MiniImage.prototype._loadImage;即可正常 附件 : --> 2019-12-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron ...

来源: Laya_社区 发布时间: 20191210

142. 关于闭包的问题 [ 68%]

...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

143. 创建多个Sprite对象后,再次取出来的时候坐标全为0,0高宽跟创建时的也不一样 [ 68%]

...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

144. DrawPie例子中无法显示遮罩区域 [ 68%]

...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

145. 获取sprite对象的 width和height为0 [ 68%]

...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

146. CPU优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 68%]

...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

147. CPU优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 68%]

...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

148. 飞机大战出现的问题注册了类New的时候报错未定义 [ 67%]

...背景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

149. drawToCanvas无法截取到有子元素。 [ 67%]

...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

150. 关于as版的Animation.createFrames()不能工作? [ 66%]

...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