Version: 2022.2
言語: 日本語

DictionaryPool<T0,T1>

class in UnityEngine.Pool

/

継承:Pool.CollectionPool_2

マニュアルに切り替える

説明

A version of CollectionPool<T0,T1> for Dictionaries.

using UnityEngine.Pool;

public class Example { void GetPooled() { // Get a pooled instance var instance = DictionaryPool<int, int>.Get();

// Use the Dictionary

// Return it back to the pool DictionaryPool<int, int>.Release(instance); } }

継承メンバー

Static 関数

GetGet an instance from the pool. If the pool is empty then a new instance will be created.
ReleaseReturns the instance back to the pool.