示例#1
0
 AssetBundleInfo IBundleServices.GetAssetBundleInfo(string bundleName)
 {
     if (_variantCollector != null)
     {
         PatchManifest patchManifest = _patcher.GetPatchManifest();
         bundleName = _variantCollector.RemapVariantName(patchManifest, bundleName);
     }
     return(_patcher.GetAssetBundleInfo(bundleName));
 }
示例#2
0
 AssetBundleInfo IBundleServices.GetAssetBundleInfo(string manifestPath)
 {
     if (_variantCollector != null)
     {
         PatchManifest patchManifest = _patcher.GetPatchManifest();
         manifestPath = _variantCollector.RemapVariantName(patchManifest, manifestPath);
     }
     return(_patcher.GetAssetBundleInfo(manifestPath));
 }
示例#3
0
        string IBundleServices.GetAssetBundleName(string assetPath)
        {
            PatchManifest patchManifest = _patcher.GetPatchManifest();

            return(patchManifest.GetAssetBundleName(assetPath));
        }