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

Caching.MoveCacheBefore

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

声明

public static void MoveCacheBefore(Cache src, Cache dst);

参数

src 要移动的 Cache。
dst 应在 Cache 列表中紧跟源 Cache 的 Cache。

描述

在 Cache 列表中将源 Cache 移到目标 Cache 之前。

using System.IO;
using UnityEngine;

public class Example : MonoBehaviour { void MoveCacheBeforeExample() { 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

Caching.MoveCacheBefore(c2, c1);

//Now the Cache list looks like: //Position 0: Default Cache //Position 1: Cache2 //Position 2: Cache1 //Position 3: Cache3 } }