Update AssetBundleCollector

AssetBundleGrouper变更为AssetBundleCollector
This commit is contained in:
hevinci
2022-05-04 21:24:51 +08:00
parent d592fb96a6
commit eafdb8cd31
40 changed files with 247 additions and 247 deletions

View File

@@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace YooAsset
{
internal class DependAssetBundleGrouper
internal class DependAssetBundleGroup
{
/// <summary>
/// 依赖的资源包加载器列表
@@ -12,7 +12,7 @@ namespace YooAsset
private readonly List<AssetBundleLoaderBase> _dependBundles;
public DependAssetBundleGrouper(string assetPath)
public DependAssetBundleGroup(string assetPath)
{
_dependBundles = AssetSystem.CreateDependAssetBundleLoaders(assetPath);
}