Version: 2020.3

Caching.ClearOtherCachedVersions

切换到手册
public static bool ClearOtherCachedVersions (string assetBundleName, Hash128 hash);

参数

assetBundleName AssetBundle 名称。
hash 需要保留的版本。

返回

bool 缓存清除成功时,返回 true。

描述

除了指定的版本以外,从缓存中删除 AssetBundle 的所有缓存版本。

如果有任何缓存的 AssetBundle 处于使用状态,则返回 false。

using UnityEngine;

public class Example : MonoBehaviour { void ClearOtherCachedVersionsExample(AssetBundle bundleToSave, string manifestBundlePath) { AssetBundle manifestBundle = AssetBundle.LoadFromFile(manifestBundlePath); AssetBundleManifest manifest = manifestBundle.LoadAsset<AssetBundleManifest>("AssetBundleManifest");

//This will clear all the cached version of this asset bundle except for this specific cached version bool success = Caching.ClearOtherCachedVersions(bundleToSave.name, manifest.GetAssetBundleHash(bundleToSave.name));

if (!success) { Debug.Log("Unable to clear the caches"); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961