大约有 27 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
....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
... //把背景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
...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
...背景图显示在容器内 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
...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
...值 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
...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
...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
...] = { 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
...种开发语言、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