大约有 71 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0027 秒)
...时生成一个version.json的文件名映射文件。通过版本管理类ResourceVersion自动关联代码中的实际文件名和重命名后的版本管理控制的文件。开发者启用版本管理的文件只要发生改变,就会在发布时自动更新改变文件名中的hash字符串...
来源: Laya2.0_文档 发布时间: 20210715
...加载 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
...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.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
... Laya.URL.basePath = "https://xxxxxxx/vivo/"; Laya.ResourceVersion.en able("version.json", Laya.Handler.create(this, this.onVersionLoaded), Laya.ResourceVersion.FILENAME_VERSION); 如上所示的小游戏平台资源加载部分设置代码 version.json文件是放在游戏...
来源: Laya_社区 发布时间: 20211122
...什么样的 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
...dImage(basePath + pid + ".png"); 在设置了URL.basePath,并且调用了ResourceVersion.enable的情况下,上面代码里的basePath是带http头的,导致最后没有经过ResourceVersion.addVersionPrefix方法去处理,最后加载的url是错的 改成这样就没问题了:spp.load...
来源: Laya_社区 发布时间: 20180627
...理问题,根据官方文档 layacmd 执行后资源加载不了 layacmd resourceVersion -i res -o . -n 1.0.0 执行成功了,1.0.0 这个目录也生成了 但是 调试的时候资源找不到了,放到web服务器通过访问index.html 也不行:( 附件 : --> laya3.zip 2018-05-15...
来源: Laya_社区 发布时间: 20180515