大约有 21 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0033 秒)
...加载 package { import laya.net.Loader; import laya.net.ResourceVersion; import laya.utils.Handler; import view.TestView; import laya.webgl.WebGL; import laya.net.URL; import laya.ani.bone.Skeleton; public class LayaUISample {...
来源: Laya_社区 发布时间: 20180828
...rsion.json失败 class GameMain{ constructor() { Laya.init(1280,760); Laya.ResourceVersion.type = Laya.ResourceVersion.FILENAME_VERSION; Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, this.beginLoad)); } private beginLoad(): void { console.debug("aaaaaaaaaaaaaaaaa"); var img =...
来源: Laya_社区 发布时间: 20180416
...问题吗 //设置版本控制类型为使用文件名映射的方式 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
...acmd进行版本管理控制。 另外在laya.core.js里面第5094行,是ResourceVersion的代码,可以看到这里ResourceVersion.enable的方法必须要接收一个type类型,否则资源加载方式会自动变成按hash文件名的方式来加载,这个是两边文档没有说明的地...
来源: Laya_社区 发布时间: 20180206
...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
...ar key in this.astcconfig){ var fileversion = Laya.ResourceVersion.manifest[key]||key; fileversion = fileversion.replace(".png",".ktx").replace(".jpg",".ktx"); Laya.ResourceVersion.manifest[key] = fileversion; ...
来源: Laya_社区 发布时间: 20221013
...次加载每次都会 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
...由IDE发布功能自动生成,如果没有也不影响后续流程 Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, this.onVersionLoaded), Laya.ResourceVersion.FILENAME_VERSION); } onVersionLoaded() { //激活大小图映射,加载小图的时候,如果发现小图在大...
来源: Laya2.0_文档 发布时间: 20210715
...由IDE发布功能自动生成,如果没有也不影响后续流程 Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, this.onVersionLoaded), Laya.ResourceVersion.FILENAME_VERSION); } onVersionLoaded(): void { //激活大小图映射,加载小图的时候,如果发现小图...
来源: Laya2.0_文档 发布时间: 20210715
...果就是图集中的资源无法加载。现在的疑问就是,layacmd resourceVersion是对最终导出目录进行版本管理吗?如果是对导出的目录进行资源管理为何会存在图集中的图片不存在于manifest.json中? 2018-04-15 添加评论 免费帖 --> 分享 微博 Q...
来源: Laya_社区 发布时间: 20180415