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

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

421. loadScene()如何获取到资源异步加载是否完成的事件? [ 72%]

...源异步加载是否完成的事件? protected onCreate(): Laya.View { this.RootPanel = new ui.test.gameLayerUI(); console.log(this.RootPanel.my_laya.width); // this.RootPanel.on(Laya.Event.RENDER,this,this.bindEvent); return this.RootPanel; }说明:这是一个框架下用来创建界面的cre...

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

422. 怎样监听list里的组件 [ 72%]

...ist(name 为list_box),我想监听里面name为select_img ,我写的 this.list_box.getChildByName("select_img").on 报错  on is not a function ?    2018-07-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回...

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

423. 关于list里注册事件和移除事件 [ 72%]

...tton = cell.getChildByName("btn") as Laya.Button; btn.on(Laya.Event.CLICK, this, this.on_test); } 附件 : --> list.png 2018-08-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 数据是...

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

424. 分享:Skeleton下Event.LABLE('label')事件的使用 [ 72%]

...scale(0.5, 0.5); Laya.stage.addChild(mArmature); mArmature.on(Event.LABEL, this, onEvent); mArmature.on(Event.STOPPED, this, completeHandler); play(); } private function onEvent(e:*):void { var tEventData:EventData = e as EventData; Laya.stage.addChild(mLabelSprite); mLabelSprite.x = mStartX; mLabel...

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

425. fillTexture使用问题 [ 72%]

...) { super(); Laya.loader.load("res/images/map_01.png", Laya.Handler.create(this, this.bgLoaded)); } bgLoaded(): void { let t: Laya.Texture = Laya.loader.getRes("res/images/map_01.png"); this.width = 1000; this.height = 500; this.graphics.fillTexture(t, 0, 0); this.zOrder = -1; } } 2017-07-14 添加...

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

426. iphoneX 用微信打开游戏,,做新手引导 抠图有问题,,, [ 72%]

...闪的也有问题,,,   //绘制一个蓝色方块,不被抠图 this.gameContainer = new Sprite(); Laya.stage.addChild(this.gameContainer); // 引导所在容器 this.guideContainer = new Sprite(); // 设置容器为画布缓存 this.guideContainer.cacheAs = "bitmap"; Laya.stage.addChild(th...

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

427. 关于设置动画轴心点问题 [ 72%]

...aracters/Blue_JumpLeft_Smile.png"], ActionType.JUMP_LEFT); // 创建动画 this.animation = new Laya.Animation(); this.animation.interval = 150; this.animation.play(0, true, ActionType.MOVE_RIGHT); this.addChild(this.animation);   由于动画不能设置锚点,我想设置动画图片宽度/2为...

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

428. TiledMap.moveViewPort(x,y) 为嘛要传入负数 [ 72%]

...0,-100 这是为啥? 我强行加入了 -  就可以了  let tmapsp=this.tMap.mapSprite();         tmapsp.zOrder=1;         this.tMap.changeViewPort(-((Laya.stage.width-this.tMap.width)/2),-((Laya.stage.height-this.tMap.height)/2),this.tMap.width,this.tMap.height);      ...

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

429. TypeError: this._childs is null [ 71%]

TypeError: this._childs is null 用了Laya.stage.destroyChildren();之后出错 TypeError: this._childs is null 看不懂啊! 救命啊!!!!!!   还有火狐提示 HTTP "Content-Type" 中的 "text/html" 不支持。媒体资源加载失败。 无法播放媒体。没有相应格式的...

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

430. Image.loadImage 方法加载问题 [ 71%]

...同的图片 只能加载两个 但是三个同样的图片没问题     this.publicSpaceList = new Laya.List(); this.publicSpaceList.itemRender = gamepublicspaceitem.PublicSpaceItem; this.publicSpaceList.repeatX = 1; this.publicSpaceList.repeatY = 3; this.publicSpaceList.spaceY = 0; // this.publi...

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