update editor logic

This commit is contained in:
hevinci
2022-12-07 17:52:02 +08:00
parent a1d5949177
commit 3a81d7babd
5 changed files with 35 additions and 6 deletions

View File

@@ -297,8 +297,8 @@ namespace YooAsset.Editor
}
private List<string> GetAssetTags(AssetBundleCollectorGroup group)
{
List<string> tags = StringUtility.StringToStringList(group.AssetTags, ';');
List<string> temper = StringUtility.StringToStringList(AssetTags, ';');
List<string> tags = EditorTools.StringToStringList(group.AssetTags, ';');
List<string> temper = EditorTools.StringToStringList(AssetTags, ';');
tags.AddRange(temper);
return tags;
}