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

大约有 980 项符合查询结果, 库内数据总量为 24,852 项。 (搜索耗时: 0.0057 秒)

161. 内存释放问题 [ 77%]

LayaAir引擎 内存释放问题 export class ResUIModuleManager { /** * 模块资源路径 */ private static moduleResPath: string = 'res/atlas/{0}.json'; /** * 模块的资源名称和模块的主面板(模块的主面板类全名,模块资源图集名称[]) * @type {Laya.Dictionary} * @mem...

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

162. 隐藏默认的虚拟键、屏蔽APP窗口弹出脚本错误信息 的问题 [ 77%]

...误信息 Laya.Browser.window.onerror = handleErr; //初始化函数 LoadRes(); })(); function handleErr(msg,url,l) { //return true or false return false; } function LoadRes() { var resArray = [ {url: "res/atlas/comp.json",type: Laya.Loader.ATLAS}, {url: "res/atlas/newhfh.json",type: Laya.Loader.ATL...

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

163. 微信小游戏加载ProtoBuf文件和图片加载问题 [ 77%]

...调,也不会报错。 var loadArr:Array = new Array; loadArr= [{url: "res/atlas/hall_new.json", type: Loader.ATLAS}, // {url: "res/atlas/help.json", type: Loader.ATLAS},  // {url: "res/atlas/shop.json", type: Loader.ATLAS}, // {url: "shmjAssets/扣牌文字背景.png", type: Loader.IMAGE}, //这...

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

164. 图片使用pivotX参数后,再对图片添加遮罩会出现效果不对。 [ 77%]

...   Laya.stage.bgColor = "#232628";         Laya.loader.load("../../res/bg2.png", Handler.create(this, setup));     })();     function setup()     {         var bg = new Sprite();         bg.loadImage("../../res/bg2.png");         Laya.stage.addChild(bg);      ...

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

165. 关于微信小游戏缓存问题 求大佬们指教 [ 77%]

...信提供了50M的缓存区域  在开发者工具下看到目录是usr/res  而项目的资源目录是 game/res 问题来了 请教下 如何让包体尽量达到4M后多出来的资源进行缓存 如3D资源 目前发现的问题是 引擎的loader方法无法访问usr目录  除非修改 Lay...

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

166. XMLHttpRequest cannot load [ 77%]

...s:9742 XMLHttpRequest cannot load file:///F:/Laya/Project/firstGame/bin/h5/res/atlas/comp.json. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.__proto.send @ firstGame.max.js:9742 firstGame.max.js:9137 [warn]Retry...

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

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

...置文件?在laya是可以 public initConfig(){ 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.g...

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

168. Laya同时加载图片和引用图片的资源时会报错 [ 76%]

...           Laya.loader.create([             { url: "res/Sword 10 Blue Gold.lmat", type: Laya.Loader.MATERIAL},             { url: "res/Sword 10 Blue Gold.jpg", type: Laya.Loader.IMAGE}         ]); 附件 : --> Test.zip 2022-01-07 添加评论 ...

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

169. Animation 的createFrames 使用已经加载的图集缓存动画失败 [ 76%]

...么地址与json文件的位置有关,比如你的json文件的地址是res/package.json,那么每张小图的地址为res/package/<小图的文件名>; 如果你的json文件中有meta.prefix,那么地址则为URL.basePath + prefix + <小图的文件名>。 这个文档里讲的...

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

170. 仅在Android微信小游戏下图片错乱 [ 76%]

...下图片错乱 static preLoadPublicAssets(){ this.sAssetList = Loader.getRes("file_list.json") Laya.loader.load("res/ui/share@atlas0.png", Handler.create(this, this.onLoaded), null, Loader.IMAGE, 1, true, null, true) } static onLoaded(res){ console.log("public assets inited !!!!") console.log(Laya....

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