UnityEngine.Pool 中的类
/
/
一个 CollectionPool<T0,T1> 的 HashSet 版本。
using UnityEngine.Pool;
public class Example { void GetPooled() { // Get a pooled instance var instance = HashSetPool<int>.Get();
// Use the HashSet
// Return it back to the pool HashSetPool<int>.Release(instance); } }