-
Notifications
You must be signed in to change notification settings - Fork 498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
自己管理热更,无法适配2.2.x版本 #397
Comments
我自己测试的时候, 发现已经下载的缓存文件, 只要不在当前版本的清单里, 就无法加载. |
你说的可能可以满足需求,不过我还是希望不用折腾就能实现这个基本的需求。 |
catalog 是2.2版本开始用于代替1.5x版本里IQueryServices接口的功能文件。可以改造下内置文件系统类,绕过catalog文件的加载,以及查询方法。 |
aa3a049 var fileSystemParams = CreateDefaultBuildinFileSystemParameters();
fileSystemParams .AddParameter(FileSystemParametersDefine.DISABLE_CATALOG_FILE, true); |
Nice! 大佬威武! |
我一直是自己的代码管理资源热更的,在2.2.x之前,使用OfflinePlayModeParameters可以指定加载路径为”Application.persistentDataPath/xxxx“。但是在升级到2.2.x之后,会强制从StreamingAssets/yoo下读取catalog文件。导致一运行就报错:找不到catalog文件。
当前的问题:在2.2.x版本中,不支持所有文件都从指定的可持久化路径中加载。
期望:在2.2.x版本中,仅使用yooAsset的构建、加载功能。希望能更灵活的自定义加载路径,而不是写死的路径。
The text was updated successfully, but these errors were encountered: