From 76929cc0150f68dfdaa27c1f7948dbf831938851 Mon Sep 17 00:00:00 2001 From: hevinci Date: Sat, 14 May 2022 12:47:16 +0800 Subject: [PATCH] Update CHANGELOG.md --- Assets/YooAsset/CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/Assets/YooAsset/CHANGELOG.md b/Assets/YooAsset/CHANGELOG.md index 06cd299..b37fdec 100644 --- a/Assets/YooAsset/CHANGELOG.md +++ b/Assets/YooAsset/CHANGELOG.md @@ -2,6 +2,42 @@ All notable changes to this package will be documented in this file. +## [1.0.9] - 2022-05-14 + +### Fixed + +- 修复了YooAssets.GetAssetInfos(string Tag)方法返回了无关的资源信息的问题。 + +### Changed + +- 编辑器下的模拟运行模式,不再依赖配置里的构建版本。 +- 更新资源清单结构,资源对象类增加分类标签。 +- 优化了资源工具相关配置文件的加载方式和途径,这些配置文件可以放置在任何目录下。 +- 优化了Location无效后的错误报告方式。 +- 优化了资源包的构建参数,现在始终开启DisableLoadAssetByFileName,帮助减小运行时的内存。 +- YooAssets.ProcessOperation()重命名为YooAssets.StartOperation() + +### Added + +- 新增YooAssets.IsNeedDownloadFromRemote()方法。 + + ````c# + public static bool IsNeedDownloadFromRemote(string location); + ```` + +- 新增获取所有子资源对象的方法。 + + ````c# + class SubAssetsOperationHandle + { + public TObject[] GetSubAssetObjects(); + } + ```` + +### Removed + +- YooAssets.GetBundleInfo()方法已经移除。 + ## [1.0.8] - 2022-05-08 ### Fixed