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

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

81. 微信小游戏环境下,load的参数ignoreCache设置为true时,并没有重新下载资源 [ 77%]

...11-23 15:27 浏览: 2527 关注: 2 人 刘大明 • 2018-11-21 19:41 Laya.loader.load("https://xxxx/image.png", new Laya.Handler(this, this.imageLoaded), null, Laya.Loader.IMAGE, 0, false, "", true); 代码是这样的,但是这个url的资源覆盖以后,还是不会发生...

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

82. Templet资源删除不掉 [ 77%]

...*=null):void         {             // var texture:Texture = Loader.getRes("res/Dragon.png");             // var data:ArrayBuffer = Loader.getRes("res/Dragon.sk");             factory = new Templet();             factory.on(Event.COMPLETE, this, onSkeletonDat...

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

83. 资源加载过程中断网 [ 77%]

...: 与内容相关的链接 提交 1 个回复 Laya_XS 赞同来自: Laya.loader.load方法加载文件时,如果网络中断,在尝试加载失败后会触发Laya.loader.on("error",this,onLoader); function onLoaded(){   }   不知道你是怎么写的,我们自己做项目都是这样做的...

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

84. 微信加载文件失败没有回调 [ 77%]

...的版本版本管理(会重命名文件名称的)   例子代码: LoadError(){console.log("LoadError")} LoadOK(){console.log("LoadOK")}   Laya.loader.on(Laya.Event.ERROR,this,this.LoadError) Laya.loader.load("不存在的图片URL",Laya.Handler(this,this.LoadOK));     发布成微信小...

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

85. 背景音乐能缓存吗? [ 77%]

...被折叠 要回复问题请先登录 发起人 C_jx 相关问题 请问下loader如何强制加载一个文件,避免浏览器的缓存 求教: soundManager如何停止正在播放的背景音乐 Animation 的createFrames 使用已经加载的图集缓存动画失败 请教下微信小游戏的...

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

86. 分包后, 资源加载问题 [ 77%]

..., 能否在A项目里加载? 我感觉 应该是在A项目里用Laya.loader加载后, 再加载B.js,这样才合理。 具体代码: private function onAssetLoaded():void { //trace("加载结束"); //实例化类 Example,并添加到舞台显示 Laya.loader.load("js/loading100.js", Handl...

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

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

在加载多个资源的时候,加载进度异常 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

88. 加载不同域名下的单个图片 会重复加载两次,导致无法显示 [ 76%]

...A域名图片获取失败,导致图片不显示,什么原因   Laya.loader.load 方式预加载 附件 : --> 2017-09-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 cuixueying 赞同来自: 方便给个例...

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

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

...图片加载不出来 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

90. 关于资源加载的问题 [ 76%]

...pg"}, {url : "res/atlas/games/game_13/image.atlas"} ]; Laya.loader.load(loadArray, Handler.create(null, ()=>{ this.uiView = new SharkItOff(); Laya.stage.addChild(this.uiView); })); 先加载图集,图集加载完再new一个界面。但是界面里的图片都不显示 thekingret...

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