Class SingleCollectionCatalog<TItem>
The base class of the catalog storing only one kind of
CatalogItem.
This kind is obviously described by TItem.
Most of the catalogs are single collections at the moment.
Namespace: UnityEngine.GameFoundation
Assembly: solution.dll
Syntax
public abstract class SingleCollectionCatalog<TItem> where TItem : CatalogItem
Type Parameters
| Name | Description |
|---|---|
| TItem | The type of CatalogItem stored in this catalog. |
Methods
| Name | Description |
|---|---|
| ContainsItem(string) | Tells whether an item with the specified |
| FindItem(string) | Looks for a |
| FindItemsByTag(string) | Returns an array of all the |
| FindItemsByTag(string, ICollection<TItem>) | Fills in the given |
| FindItemsByTag(Tag) | Returns the array of all the |
| FindItemsByTag(Tag, ICollection<TItem>) | Fills in the given |
| GetItems() | Returns an array of all the |
| GetItems(ICollection<TItem>) | Fills in the given |