namespace AtlasUtility { using UnityEditor; using System.Collections.Generic; public class GUIDManager { public static List GetGUID(List assetPathList) { List guidList = new List(); foreach (var assetPath in assetPathList) { guidList.Add(AssetDatabase.AssetPathToGUID(assetPath)); } return guidList; } } }