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

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

11. 我想移动容器来实现前进的动画,但是移动不了。这里的y有问题 但是又不知道改成什么 [ 84%]

....loadImage("war/bc.png"); Laya.stage.addChild(bg1);   //加载背景2 var bg2 = new Sprite(); bg2.loadImage("war/bc.png"); //更改背景2 放在背景1的上面 bg2.pos(0,852); Laya.stage.addChild(this); Laya.timer.frameLoop(1,this,myLoop);   } function myLoop(){ this.y=Laya.stage; // console.log...

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

12. 续飞机大战 [ 84%]

... //把背景1放到容器内 this.addChild(this.bg1); //创建背景2 this.bg2 = new Laya.Sprite(); //加载并显示背景图 this.bg2.loadImage("war/background.png"); //更改背景2,放到背景1上面 this.bg2.pos(0, -852); //把背景2放到容器内 this.addChild(this.bg2); //创建一个帧...

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

13. Laya.Pool.getItemByClass 找不到上次释放的对象 [ 83%]

...bg1->",bg1); //再次从Pool里获取对象的时候,就报错了 var bg2:BackGround= Laya.Pool.getItemByClass("mybg",BackGround); Laya.stage.addChild(bg2); console.log("bg2->",bg2);结果执行的时候就报错如下:   然后查看_style报错的情况,发现报错在laya.core.js里...

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

14. 微信小游戏图片加载不出来 [ 82%]

...背景图显示在容器内 this.addChild(this.bg1); //创建背景2 this.bg2 = new Laya.Sprite(); //加载并显示背景图 this.bg2.loadImage("ui/BG/play-bg.png", 0, 0, 720, 5120); //更改背景2的位置,放在背景1的上边 this.bg1.pos(0, -3840); this.bg2.pos(0, -8960); //把背景图显...

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

15. "TS语言开发H5游戏微信飞机大战"中,为什么是用this.bg1.y+this.y来做判断呢? [ 81%]

...this.y+=50; if (this.bg1.y+this.y>=852) { this.bg1.y-=852*2; } if (this.bg2.y+this.y>=852) { this.bg2.y-=852*2; } }我尝试的代码是: onLoop():void{ this.y+=50; if (this.bg1.y>=852) { this.y-=852*2; this.bg1.y-=852*2; } if (this.bg2.y>=852) { this.y-=852*2; this.bg2.y-=852*2; } } ...

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

16. 【简单跑酷--JS版】---Lv.2 类之间的引用以及背景滚动实现 [ 73%]

...值 this.moveX = 0; //定义背景1 this.bg1 = null; //定义背景2 this.bg2 = null; //草堆 this.grass = null; Background.__super.call(this); this.init(); } //Background 是一个显示对象 继承此 Sprite Laya.class(Background, "Background", laya.display.Sprite); var _proto = Background.proto...

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

17. webgl 模式下 用graphics.drawTexture 平铺图片 图片不显示是什么原因 [ 71%]

...tRes('res/images/bg1.png'); this.texture2 = Laya.loader.getRes('res/images/bg2.png'); var repeatX = 8 ; var repeatCount = Math.ceil(stageW / repeatX); for(let i = 0; i < repeatCount ; i++) { this.bg1.graphics.drawTexture(this.texture1,8*i,0); this.bg2.graphics.drawTexture(this.texture2,8*i,0); } ...

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

18. Panel滚动条滑块位于最下方 [ 70%]

...CC"; Laya.loader.load([{url:"res/atlas/comp.json",type:Loader.ATLAS},{url:"bg2.png"}],Handler.create(this,onCom)); } private function onCom():void { var img:Image=new Image(); img.skin="bg2.png"; panel=new Panel(); panel.vScrollBarSkin="comp/vscroll.png"; panel.width=300; panel.height=300; Laya.stag...

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

19. 游戏加载进度失效 [ 65%]

...] = { url: "res/bg1.png", type: Laya.Loader.IMAGE } asset[3] = { url: "res/bg2.png", type: Laya.Loader.IMAGE } asset[4] = { url: "res/atlas/ui.json", type: Laya.Loader.ATLAS } asset[5] = { url: "mileTxt.png", type: Laya.Loader.IMAGE } Laya.loader.load(asset, Laya.Handler.create(this, this.onLoaded),...

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

20. 加载-销毁Texture使用的图片资源 [ 63%]

...种开发语言、LayaAirIDE让项目开发更高效。let PathBg = "res/bg2.png", PathFly = "res/fighter/fighter.atlas"; class Loader_ClearTextureRes { constructor() { const Browser = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL...

来源: Laya2.0_示例 发布时间: 20241117