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

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

461. 小游戏子域程序加载到图集后,取图集内资源报错。 [ 51%]

...function():void{ beginLoad(); }); private function beginLoad():void { Laya.loader.load("res/images/rank.json", Handler.create(this, onLoaded)); } private function onLoaded():void { trace("加载成功"); var c:Image = new Image("rank/country.png"); Laya.stage.addChild(c); }  以上是子域项目...

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

462. 如何通过代码控制prefab上面的时间轴动画animation? [ 51%]

...后就跟普通scene一样使用了。 ... let prefab:Laya.Prefab = Laya.loader.getRes(".../xxx"); let soldier = prefab.create() as Laya.Box; // 为了代码提示,转成实际的类型 soldier["show"].play(); 在TS下面soldier如果不是any的话,直接使用soldier.show会编译报错。 可...

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

463. 帮忙看看Texture类getPixels内存泄漏的问题。 [ 51%]

...init(1024, 768, WebGL); Stat.show(0, 0); Laya.stage.bgColor = "#fff"; Laya.loader.load("assets/images/color1.png", Handler.create(this, __loadImageHandler)); } private function __loadImageHandler():void { _colorSpr = new Sprite(); _colorTex = Laya.loader.getRes("assets/images/color1.png"); _colorSpr...

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

464. layaAir分包问题 [ 51%]

....moduleCode[moduleName]; var moduleJs:*; if (codeConfig) { moduleJs = Laya.loader.getRes(codeConfig.url); } return moduleJs; } chunjine • 2017-03-17 15:45 @chunjine:不对,并不能断点,只是有异常能进去。 sleepfish • 2017-03-27 09:36 可以断点。。。只要在data后面加上/...

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

465. 微信小游戏中iPhoneX的适配问题 [ 51%]

...uot;../../res/apes/monkey3.png"); // 方法2:使用drawTexture Laya.loader.load("../../res/apes/monkey2.png", Handler.create(this, function() { var t = Laya.loader.getRes("../../res/apes/monkey2.png"); var ape = new Sprite(); ape.graphics.drawTexture(t, 0, 0); Laya.stage.a...

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

466. 小游戏对读取json文件有要求吗?为啥说读取json文件错误啊 [ 51%]

...0 0 分享 微博 QZONE 微信 liwenhua 赞同来自: this.linkJson = Laya.loader.getRes('res/json/linkUrl.json');这样读取出来不就是就对象了吗,怎么设置编码格式啊??不会啊!!!我都是这样引用,然后直接this.linkJson.XXX进行读取的,如果数值都都...

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

467. Skeleton骨骼动画内存泄漏 [ 51%]

...ure2d destory"); } this.bitmap=null; } if (this.url && this===Laya.loader.getRes(this.url)) Laya.loader.clearRes(this.url); } }增加的代码是 if (this.bitmap.referenceCount===0){ this.bitmap.destroy(); // console.log("texture2d destory"); } 2019-06-13 0 0 分享 微博 QZONE 微信 打...

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

468. 设置滤镜(JavaScript-LayaAir基础篇(JS)-位图) [ 51%]

...ER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; Laya.loader.load(ApePath, Handler.create(this, setup)); })(); function setup() { normalizeApe(); makeRedApe(); grayingApe(); } function normalizeApe() { var originalApe = createApe(); apeTexture = Laya.loader.getRes(ApePath); orig...

来源: Laya2.0_文档 发布时间: 20210714

469. 图片遮罩大小跟设置不一致 [ 51%]

...adImage("../../res/apes/monkey3.png"); // 方法2:使用drawTexture Laya.loader.load("https://s2.d2scdn.com/2017/12/ ... ot%3B, Handler.create(this, function() { var t = Laya.loader.getRes("https://s2.d2scdn.com/2017/12/ ... 6quot;); var ape = new Sprite(); ape.scaleX = 0.5 ape.scaleY = 1 ape.grap...

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

470. 如何用 FlashBuilder 或 LayaIDE 进行单步调试? [ 50%]

...用代码调用按钮的点击事件(如as3的dispatchEvent)? Laya.loader.getRes的声音资源如何用Laya.SoundManager播放? 问题状态 最新活动: 2017-08-08 23:11 浏览: 4395 关注: 3 人 cuixueying • 2017-04-26 20:01 flash builder是as3的调试环境,不是h5的,我们只...

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