版本: Unity 6 (6000.0)
语言English
  • C#

Caching.GetCachedVersions

建议修改

成功!

感谢您帮助我们改进 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会阅读用户提出的每一个修改建议,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的修改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们改进 Unity 文档的质量。

关闭

取消

声明

public static void GetCachedVersions(string assetBundleName, List<Hash128> outCachedVersions);

参数

assetBundleName AssetBundle 名称。
outCachedVersions 所有缓存版本的列表。

描述

返回给定 AssetBundle 的所有缓存版本。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Networking;

public class Example : MonoBehaviour { IEnumerator GetCachedVersionExample(string uri) { //Download the bundle UnityWebRequest request = UnityWebRequestAssetBundle.GetAssetBundle(uri); yield return request.SendWebRequest(); AssetBundle bundle = DownloadHandlerAssetBundle.GetContent(request);

//Get all the cached versions List<Hash128> listOfCachedVersions = new List<Hash128>(); Caching.GetCachedVersions(bundle.name, listOfCachedVersions);

//use listOfCachedVersions hashes to perform actions on Caches...

//Unload the AssetBundle bundle.Unload(true); } }