大约有 15 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
最新的ResourceVersion发布以后加载的url不正确 一个工程在IDE下直接播放是可以运行的。 我使用最新的ResourceVersion,在资源后增加了Hash后缀,比如某个文件发布后: release\web\res\atlas\ui\sharedcp094faf36.png 加上了094faf36的后缀 然后...
来源: Laya_社区 发布时间: 20180115
...问题吗 //设置版本控制类型为使用文件名映射的方式 Laya.ResourceVersion.type = Laya.ResourceVersion.FILENAME_VERSION; Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, beginLoad)) function beginLoad() { //加载LOADING资源 Laya.loader.load([{ url: "res/atlas/...
来源: Laya_社区 发布时间: 20180710
...改的地方有如下几处: 1、在第8行下面添加对 laya.net.ResourceVersion 的引用: var ResourceVersion = laya.net.ResourceVersion; 2、第330-336行,将 MiniFileMgr.isLocalNativeFile=function(url){ for(var i=0,sz=MiniAdpter.nativefiles.length;i<sz;i++){ if(url.indexOf(Mini...
来源: Laya_社区 发布时间: 20181212
...写的 //程序入口 Laya.init(600, 400); //激活资源版本控制 Laya.ResourceVersion.enable("version.json", Handler.create(null, beginLoad), Laya.ResourceVersion.FILENAME_VERSION); function beginLoad(){ Laya.loader.load("res/atlas/comp.atlas", Handler.create(null, onLoaded)...
来源: Laya_社区 发布时间: 20180327
...什么样的 var uiResArray = [ { url: Laya.ResourceVersion.manifest["res/atlas/loading.json"], type: Laya.Loader.ATLAS }, { url: Laya.ResourceVersion.manifest[utils.resourcesCenter.ResourcesPathStr.PROTO_FILE_PATH], type: Laya.Loader.TEXT }, ...
来源: Laya_社区 发布时间: 20180421
...次加载每次都会 var LoadingView_configUrl ="version.json"; laya.net.ResourceVersion.enable(LoadingView_configUrl,Laya.Handler.create(this,this.onProLoadedBef),2); _proto.onProLoadedBef =function() { var ProResArray = [ {url : "res/atlas/com/loading.atlas" , type : Laya.Loader.ATLAS}, ...
来源: Laya_社区 发布时间: 20180711
...nit(); //程序入口 Laya.init(600, 400); //激活资源版本控制 Laya.ResourceVersion.enable("version.json", Handler.create(null, beginLoad), Laya.ResourceVersion.FILENAME_VERSION); function beginLoad(){ let timerFont = new Laya.BitmapFont(); timerFont.loadFont('res/timerfont....
来源: Laya_社区 发布时间: 20180509
...ex Huang package { import laya.net.Loader; import laya.net.ResourceVersion; import laya.utils.Handler; import laya.webgl.WebGL; import laya.utils.Mouse; import laya.ui.Button; import laya.display.Sprite; import laya.display.Animation; ...
来源: Laya_社区 发布时间: 20180725
...//程序入口 Laya.init(600, 400, WebGL); //激活资源版本控制 Laya.ResourceVersion.enable("version.json", Handler.create(null, beginLoad), Laya.ResourceVersion.FILENAME_VERSION); function beginLoad(){ Laya.loader.load("res/atlas/comp.atlas", Handler.create(null, onLoaded)); } function onLoad...
来源: Laya_社区 发布时间: 20180529
...scaleModel = "full"; // DebugTool.init() //激活资源版本控制 Laya.ResourceVersion.enable("version.json", Handler.create(null, beginLoad), Laya.ResourceVersion.FILENAME_VERSION); function beginLoad() { Laya.loader.load("res/atlas/comp.atlas", Handler.create(null, onLoaded)); } function o...
来源: Laya_社区 发布时间: 20180627