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

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

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

....js 在之前的基础上增加加载图片的代码://加载图片 Laya.loader.load(["res/background.png", "res/m_background.png"], laya.utils.Handler.create(this, onLoaded), laya.utils.Handler.create(this, onLoading, null, false)); //加载进度 function onLoading(progress){ console.log("onLoad...

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

542. 内存和显存的释放 [ 78%]

...512,不管是宽还是高,都可以在销毁使用对象后,在通过Loader.clearRes来及时释放你的图片内存。而小于512的资源默认会被存到我们的动态图集里,这些资源的内存占用你手动清理不掉,在动态图集资源存满了,我们会把不用的资...

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

543. Laya.Sprite3D.load机制bug [ 78%]

...ash起,就一直存在的bug 1.7.20beta有bug,帧属性面板打不开 Loader.load加载json类型的资源,完成后调用Loader.clearRes后,并不能真正释放资源的bug EffectAnimation Bug image loadimage 加载网络图片BUG 2.3.0发布微信小游戏,自动缓存:查找不到...

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

544. 不存在的资源路径问题 [ 78%]

...,导致这个问题是因为没有资源也调用了加载完成, Laya.loader.on(Laya.Event.ERROR, this, this.onLibError); Laya.loader.load([{ url:com.globals.GameConfig.XML_LIB_URL, type:Loader.BUFFER }], Handler.create(this, this.onLibLoaded)); 资源是不存在的,然后还是调用了 thi...

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

545. 每次发布都会自动更新 index.html 吗? [ 78%]

每次发布都会自动更新 index.html 吗? <script src='music.js' loader='laya'></script> <script src='snow.js' loader='laya'></script> <script src='index.max.js' loader='laya'></script> 我在index.html导入的music.js和snow.js包,每次发布时都要...

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

546. 微信小游戏怎么加载本地的配置文件 [ 78%]

...nfig(){ this.configAsset=[ {url:"res/config/playerCard.json",type:laya.net.Loader.TEXT} ]; Laya.loader.load(this.configAsset,Handler.create(this,this.loadConfigCallBack)) } public loadConfigCallBack(str:boolean){ if(str){ var config; config=laya.net.Loader.getRes("res/config/playerCard.json"); Playe...

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

547. 如何能够clone一个node(包括node所有的子节点, 以及所有节点上的compnent,属性) [ 78%]

...信 nevercai 赞同来自: 138*****161 这就是prefab的功能了。Laya.loader.load([{url:"prefab/ButtonA.json", type:Laya.Loader.PREFAB}], Laya.Handler.create(this, ()=>{ let prefab = Laya.loader.getRes("prefab/ButtonA.json") as Laya.Prefab; let o:Laya.Button = prefab.create(); o.zOrder = 1000...

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

548. Uncaught TypeError: Cannot read property 'props' of undefined [ 78%]

...Function.Laya3D._getSprite3DHierarchyInnerUrls (laya.d3.js:15290)     at Loader.Laya3D._onHierarchylhLoaded (laya.d3.js:15384)     at EventHandler.__proto.runWith (laya.core.js:1156)     at Loader.__proto.event (laya.core.js:911)     at Loader.__proto.complete (laya.core.js:14555)     at L...

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

549. 关于新的微信小游戏本地缓存API建议 [ 78%]

..."",callBack:Handler = null,encoding:String = "ascii"):void   和原有loader加载方式产生分裂,导致游戏加载代码不统一,并且不支持传入数组批量下载,当要加载多个文件并缓存的时候会麻烦很多   建议增加设置默认缓存类型的接口,可...

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

550. 二进制图片(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 78%]

...prite(); sp.loadImage(url); Laya.stage.addChild(sp);//添加到舞台 //用loader来加载url Laya.loader.load(url,Laya.Handler.create(this,showImg,[url]),null,Laya.Loader.IMAGE); } function errorHandler(url){ var t = new Laya.loader.getRes(url); var ape = new Laya.Sprite(); ape.graphics.drawTexture...

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