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

Caching.RemoveCache

提出更改

成功!

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

关闭

提交失败

由于某种原因,您的更改建议无法提交。请在几分钟后重试。感谢您抽出时间帮助我们提升 Unity 文档的质量。

关闭

取消

声明

public static bool RemoveCache(Cache cache);

参数

cache 待删除的缓存。

返回值

bool 如果删除了缓存,则返回 true。

描述

从缓存列表中删除缓存。

using System.IO;
using UnityEngine;

public class Example : MonoBehaviour { void RemoveCacheExample() { Directory.CreateDirectory("Cache1"); Directory.CreateDirectory("Cache2"); Directory.CreateDirectory("Cache3");

Cache c1 = Caching.AddCache("Cache1"); //Placed in cache list at position 1 Cache c2 = Caching.AddCache("Cache2"); //Placed in cache list at position 2 Cache c3 = Caching.AddCache("Cache3"); //Placed in cache list at position 3

bool successfullyRemovedCache = Caching.RemoveCache(c1);

if (!successfullyRemovedCache) { Debug.Log("Unable to remove cache."); }

//Now, if the remove was successful, the Cache list looks like: //Position 0: Default Cache //Position 1: Cache2 //Position 2: Cache3 } }