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

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

1. list ,增加item ,我想在末尾增加,但是每次都给我翻倍的增加,如何解决 [ 100%]

...j.Curr_Game_ImagePath + "hall/room_bg.png"); this.roombg.pos(50,150); this.addChild(this.roombg); var button = new Sprite(); button.loadImage($mj.Curr_Game_ImagePath + "hall/room_jiesan.png"); button.pos(300, 0); this.roombg.addChild(button); button.on(Event.MOUSE_DOWN, this, function (e) { list.add...

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

2. 如何将原生iframe嵌入某个节点,像addChild那样嵌入 [ 99%]

如何将原生iframe嵌入某个节点,像addChild那样嵌入 HallView.prototype.OnClickOneGou=function(){ this.frame=Laya.Browser.document.createElement("iframe"); this.frame.width=this.con.width; this.frame.height=850; this.frame.style.margin="0"; this.frame.style.padding="0"; this.frame.styl...

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

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

官方视频教程中飞机大战 "this.addChild is not a function" IDE Layabox1.7.20.2 beta 版 src/Game.js//var WebGL = laya.webgl.WebGL; //Laya.init(480, 852, WebGL); var Game = (function(){ (function Game(){ Laya.init(480,852); this.bg = BackGround(); Laya.stage.addChild(this.bg); })(); })(); s...

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

4. 天理何在,一个轴心点位中心的addChild到一个父容器,父容器的轴线点也是中心 [ 98%]

天理何在,一个轴心点位中心的addChild到一个父容器,父容器的轴线点也是中心 constructor(skin:Box) { super(); this.mc = skin; this._name = this.mc.name; this.addChild(this.mc); var xx:number = this.mc.x; var yy:number = this.mc.y; this.x = xx; this.y = yy; //一个轴心...

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

5. 游戏加载进度失效 [ 98%]

...Animation(); var waterBg = Laya.Sprite.fromImage("res/bg.png"); Laya.stage.addChild(waterBg); //创建背景 this.bg = []; this.bg[0] = new BackGround("res/bg1.png", 0.1); this.bg[0].pos(0, 0); Laya.stage.addChild(this.bg[0]); this.bg[1] = new BackGround("res/bg2.png", 1); this.bg[1].pos(0, 0); Laya...

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

6. addchild后,怎么去引用? [ 97%]

addchild后,怎么去引用? 我 addchild一个 对象到ui中,但是无法用名字去引用,应该怎么去引用呢? 代码如下:listP是一个UI页面. 用this.lost1,空对象,但是用this._childs[5]是可以的 var lose1=new Laya.Animation(); lose1.loadAnimation("lose_1.ani"); lose1.x=150; l...

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

7. 打飞机点开始游戏加载飞机动画不出来,点重新开始,才出来,新手求助! [ 97%]

...GameStartUI(); start.btn_start.on(Event.MOUSE_UP,this,gameInit) Laya.stage.addChild(start); } function gameInit() { map = new GameBgUI(); Laya.stage.addChild(map); play = new GamPlayUI(); Laya.stage.addChild(play); hero = new Hero("hero", 25) hero.pos(100,200) Laya.stage.addChild(hero) Laya.timer.on...

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

8. 【简单跑酷--JS版】---Lv.6 终篇 [ 96%]

... 0, 180, 21); this.bar.graphics.drawTexture(texture2, 0, 0, 155, 12); this.addChild(this.bg); this.addChild(this.bar); } /** * 修改当前状态 */ _proto.changeValue = function(value){ this.value += value; if(this.value < this.MIN_VALUE){ this.value = this.MIN_VALUE; }else if(this.value > th...

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

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

...ion bg_rolling() {     box = new laya.display.Sprite();     Laya.stage.addChild(box);     bg1 = new laya.display.Sprite();     bg1.loadImage("res/bg1.png");     box.addChild(bg1);     bg2 = new laya.display.Sprite();     bg2.loadImage("res/bg1.png");     bg2.pos(650, 0);     box.ad...

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

10. 新手引导在ios浏览器表现异常 [ 95%]

...age.width,Laya.stage.height,"#FFFFFF");             Laya.stage.addChild(sp);              let guideView = new MazeGuideView();             guideView.zOrder = MazeConst.gameZOrder;             guideView.pos(0,0);             Laya.stag...

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