大约有 980 项符合查询结果, 库内数据总量为 24,852 项。 (搜索耗时: 0.0057 秒)
LayaAir引擎 内存释放问题 export class ResUIModuleManager { /** * 模块资源路径 */ private static moduleResPath: string = 'res/atlas/{0}.json'; /** * 模块的资源名称和模块的主面板(模块的主面板类全名,模块资源图集名称[]) * @type {Laya.Dictionary} * @mem...
来源: Laya_社区 发布时间: 20170905
...误信息 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
...调,也不会报错。 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
... 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
...信提供了50M的缓存区域 在开发者工具下看到目录是usr/res 而项目的资源目录是 game/res 问题来了 请教下 如何让包体尽量达到4M后多出来的资源进行缓存 如3D资源 目前发现的问题是 引擎的loader方法无法访问usr目录 除非修改 Lay...
来源: Laya_社区 发布时间: 20190525
...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
...置文件?在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
... 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
...么地址与json文件的位置有关,比如你的json文件的地址是res/package.json,那么每张小图的地址为res/package/<小图的文件名>; 如果你的json文件中有meta.prefix,那么地址则为URL.basePath + prefix + <小图的文件名>。 这个文档里讲的...
来源: Laya_社区 发布时间: 20160610
...下图片错乱 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