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

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

11. 续飞机大战 [ 80%]

...unction BackGround() { BackGround.__super.call(this); //创建背景1 this.bg1 = new Laya.Sprite(); //加载并显示背景图 this.bg1.loadImage("war/background.png"); //把背景1放到容器内 this.addChild(this.bg1); //创建背景2 this.bg2 = new Laya.Sprite(); //加载并显示背景图 this....

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

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

...TH = 1600; //记录当前移动的值 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.Spri...

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

13. "Background is not defined"怎么会没定义呢???求救 [ 78%]

...d = (function(_super){ function Background(){ Background.super(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("res/background.png"); this.addChild(this.bg1); } Laya.class(Background,"Background",_super); window.Background=Background; return Background; })(Laya.Sprite); 2017-04-20 0 2 分享...

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

14. 克隆sprite [ 78%]

...  tempSpr.addChild(tempImg);             }              this.bg1.addChild(tempSpr);             if (data && data.turnOut == 1 && tempSpr) //翻转放上面             {                 let tempSpr2 = new Sprite();                tempSpr2.gra...

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

15. 官方视频教程中飞机大战 "this.addChild is not a function" [ 78%]

...d = (function(_super){ function BackGround(){ BackGround.super(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("war/background.png"); this.addChild(this.bg1); } Laya.class(BackGround,"BackGround",_super); return BackGround; })(Laya.Sprite);报错 "TypeError: this.addChild is not a function ...

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

16. 绑定不了点击事件 [ 76%]

...一下Game类放在舞台上   然后我在Mole类里边给我加载的Bg1添加了点击事件    然后运行可以点击   等我再Game类里边对基类里边的图片绑定完事件以后(绑定的ExitBtn)    我Mole里边Bg1绑定的事件就不行了   属实搞不懂了 附件...

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

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

...片不显示是什么原因 this.texture1 = Laya.loader.getRes('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,...

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

18. QQ里扫一扫打开网页,不响应Laya.Event.FOCUS事件,导致失去焦点后,声音异常 [ 71%]

... Laya.SoundManager.autoStopMusic = true Laya.SoundManager.playSound("sound/bg1.mp3", 0); Laya.stage.on(Laya.Event.FOCUS, null, function(){ console.log("获取焦点") Laya.SoundManager.playSound("sound/bg1.mp3", 0); }) Laya.stage.on(Laya.Event.BLUR, null, function(){ console.log("失去焦点") }) 2...

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

19. 请教一个最基本问题: 在项目代码中如何操作场景编辑器中设置的组件? [ 70%]

...载了微信飞机ts版本,看了下人家的项目代码里输入this.bg1是完全可以的,人家的layaMaxUI.ts里有这么一句:public bg1:Laya.Image; 而我的layaMaxUI.ts里,就死活没有public tb1:Laya.Button;。手动添加这句,没用。再在场景编辑器里按f12,这句...

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

20. 请教一个最基本问题: 在项目代码中如何操作场景编辑器中设置的组件? [ 69%]

...载了微信飞机ts版本,看了下人家的项目代码里输入this.bg1是完全可以的,人家的layaMaxUI.ts里有这么一句:public bg1:Laya.Image; 而我的layaMaxUI.ts里,就死活没有public tb1:Laya.Button;。手动添加这句,没用。再在场景编辑器里按f12,这句...

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