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

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

131. this.animation.loadAtlas 加载失败 [ 79%]

... 2 人 asdf131 • 2017-09-05 16:34 这样的话是不是所有用到 Laya.loader的话 ,如果error 都往这里来了 cuixueying • 2017-09-06 17:11 你也可以loadAtals后,对laya.loader.load进行error监听!

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

132. 微信小游戏图片加载不出来 [ 79%]

...图片加载不出来 var resArray = [{ url: "ui/BG/Start.png", type: Laya.Loader.IMAGE }, { url: "ui/BG/load.png", type: Laya.Loader.IMAGE }, { url: "res/atlas/comp.atlas", type: Laya.Loader.ATLAS }, { url: "res/atlas/ui.atlas", type: Laya.Loader.ATLAS }, ]; Laya.loader.load(resArray, Laya.Handler....

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

133. l微信开放域无法显示,但是可以正常传数据 [ 79%]

...main.ts: if(Laya.Browser.onMiniGame){ //加载一个json和图集 Laya.loader.load(["res/atlas/test.atlas"],Laya.Handler.create(null,function(){ //加载完成 //使用接口将图集透传到子域 Laya.MiniAdpter.sendAtlasToOpenDataContext("res/atlas/test.atlas"); }));子域main.ts: import GameC...

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

134. 微信小游戏 · LayaAir3.0文档 · LAYABOX [ 79%]

...小游戏中加载资源,如果引用的是本地路径,比如: Laya.loader.load("resources/layaair.png"); 如果项目的目录中,全部大小加起来不超过4M的话,只要能找到本地的资源,怎么写也没问题。 但是,微信小游戏的本地包有4M的限制,一旦...

来源: Laya3.0_文档 发布时间: 20241014

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

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

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

136. 请教下微信小游戏的内存和数据缓存? [ 79%]

...新编译。 请教一个关于laya2.5d项目美术规范的问题哈 Laya.Loader.getRes请教 微信小程序canvas如何使用layaAir引擎 请问下loader如何强制加载一个文件,避免浏览器的缓存 Animation 的createFrames 使用已经加载的图集缓存动画失败 我用list.ar...

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

137. 微信开放数据域(TypeScript-小游戏适配文档-微信小游戏) [ 79%]

...``typescript if(Laya.Browser.onMiniGame){ //加载一个json和图集 Laya.loader.load(["json/reward.json","res/atlas/test.atlas"],Laya.Handler.create(null,function(){ //加载完成 //使用接口将图集透传到子域 Laya.MiniAdpter.sendAtlasToOpenDataContext("res/atlas/test.atlas"); //使用...

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

138. 如何解析json文件并获取某对象值? [ 79%]

如何解析json文件并获取某对象值? private jsonParse() { Laya.loader.load("res/atlas/resTest0.json", Handler.create(this, this.onLoaded), null, Loader.JSON); } private onLoaded() { var json : JSON = Laya.Loader.getRes("res/atlas/resTest0.json"); var jsTx = JSON.stringify(json); } 已经...

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

139. laya.net.LoaderManager [ 79%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames LoaderManagerProperties | Methods | Events Packagelaya.netClasspublic class LoaderManagerInheritanceLoaderManager EventDispatcher Object LoaderManager 类用于用于批量加载资源。此类是单例,不要手动实...

来源: Laya2.0_api 发布时间: 20190513

140. 在加载多个资源的时候,加载进度异常 [ 79%]

在加载多个资源的时候,加载进度异常 Laya.loader.load(["res/atlas/images.atlas", "res/atlas/f1.atlas", "res/atlas/f2.atlas", "res/atlas/f3.atlas", "res/atlas/f4.atlas", "res/atlas/f5.atlas"],   Laya.Handler.create(this, function(){ }),  Laya.Handler.create(this, function(e){    c...

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