Пример #1
0
 internal bool IsDownloaded(string assetBundleName)
 {
     return(_assetPackManager.GetPackLocation(assetBundleName) != null);
 }
        private bool IsInstallTimeAssetBundle(string assetBundleName)
        {
            var packLocation = _assetPackManager.GetPackLocation(assetBundleName);

            return(packLocation != null && packLocation.PackStorageMethod == AssetPackStorageMethod.ApkAssets);
        }