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

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

1. 飞机大战地图滚动报错,麻烦看下? [ 100%]

...地图滚动报错,麻烦看下? Laya.init(650, 316, Laya.WebGL); var bg1 = null; var bg2 = null; var box = null; function bg_rolling() {     box = new laya.display.Sprite();     Laya.stage.addChild(box);     bg1 = new laya.display.Sprite();     bg1.loadImage("res/bg1.png");     box.ad...

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

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

"TS语言开发H5游戏微信飞机大战"中,为什么是用this.bg1.y+this.y来做判断呢? 如题,正确的代码是:onLoop():void{ 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():...

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

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

...简单的测试,代码如下:  //从POOL里获取BackGround对象 var bg1:BackGround= Laya.Pool.getItemByClass("mybg",BackGround); Laya.stage.addChild(bg1); console.log("bg1->",bg1); //对象放回Pool里,并清除对象 Laya.Pool.recover("mybg",BackGround); bg1.removeSelf(); Laya.stage.re...

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

4. JS进度条加载问题 [ 93%]

... var progressBar; (function () { Laya.init(720, 1280); var pro1={url:"comp/BG1.jpg",type:Laya.Loader.IMAGE}; var pro2={url:"comp/BG1.jpg",type: Laya.Loader.IMAGE}; var proArr = []; proArr[0]=pro1; proArr[1]=pro2; Laya.loader.load(proArr,Laya.Handler.create(this,onProLoaded)); if(Laya.Browser.onAndri...

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

5. 飞机大战js源码中判断语句问题 [ 93%]

...e = laya.display.Sprite; //定义背景容器 var box; //定义背景1 var bg1; //定义背景2 var bg2; (function () { //初始化引擎,设置游戏的宽高 Laya.init(480, 852); //创建一个容器,用于存放背景图。 box = new Sprite(); //把这容器添加到舞台。 Laya.stage.addCh...

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

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

... function BackGround(){ BackGround.super(this); //创建游戏背景1 this.bg1 = new Laya.Sprite(); //加载并显示背景图 this.bg1.loadImage("war/bc.png"); //把背景1放在容器中 this.addChild(this.bg1); //创建游戏背景2 this.bg2 = new Laya.Sprite(); //加载并显示背景图 this.bg...

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

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

...) })(); function showApe() { // 方法1:使用loadImage加载背景1 var bg1 = new Sprite(); bg1.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(thi...

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

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

...张图,其他图片可以 ,下面附上背景demo //创建背景1 this.bg1 = new Laya.Sprite(); //加载并显示背景图 this.bg1.loadImage("ui/BG/play-bg.png", 0, 0, 720, 5120); //把背景图显示在容器内 this.addChild(this.bg1); //创建背景2 this.bg2 = new Laya.Sprite(); //加载并...

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

9. 封装类的时候 怎么在类中表示自身? [ 82%]

...ds Laya.Sprite{ constructor() { super(); new init(); function init() { var bg1 = new Laya.Sprite(); var bg2 = new Laya.Sprite(); //背景图 // box.loadImage("../bin/background.png"); // Laya.stage.addChild(box); bg1.loadImage("../bin/background.png"); this.addChild(bg1); bg2.loadImage("../bin/backg...

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

10. 新手,图片加载不进去,没有报错。很疑问 [ 82%]

...nction(_super){ function BackGround(){ BackGround.__super.call(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("comp/bg.png"); this.addChild(this.bg1); } Laya.class(BackGround,"BackGround",_super); return BackGround; })(Laya.Sprite)代码我这样写可以正常显示,你试试 2017-02-22 ...

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