コード例 #1
0
 public static void GetCachedVersions(string assetBundleName, List <Hash128> outCachedVersions)
 {
     if (string.IsNullOrEmpty(assetBundleName))
     {
         throw new ArgumentException("Input AssetBundle name cannot be null or empty.");
     }
     if (outCachedVersions == null)
     {
         throw new ArgumentNullException("Input outCachedVersions cannot be null.");
     }
     Caching.GetCachedVersionsInternal(assetBundleName, outCachedVersions);
 }