Liberi
An exergame built for kids with CP!
ItemRegistry.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using System.Linq;
5 
9 public class ItemRegistry : MonoBehaviour
10 {
11  static ItemRegistry _instance;
12 
13  Dictionary<string, Item> _items = new Dictionary<string, Item>();
14 
15  void Awake ()
16  {
17  _instance = this;
18  _items = Resources.LoadAll<Item>("").ToDictionary(i => i.name);
19  }
20 
25  public static T GetItem<T> (string id) where T : Item
26  {
27  T item = null;
28 
29  if (_instance._items.ContainsKey(id))
30  item = _instance._items[id] as T;
31 
32  return item;
33  }
34 }
static T GetItem< T >(string id)
Returns the Item of type T of a given ID. T must be either Item or a class derived from Item...
Definition: ItemRegistry.cs:25
A Class for storing items. Can be used as is or be derived from. See GemItem or GuardianWeapon for ex...
Definition: Item.cs:8
A class that loads all Item Serializeable Objects from the Resources folder and provides the ability ...
Definition: ItemRegistry.cs:9