InventoryDatabaseV2.GetItem
#
Declarationpublic virtual GDTKItem GetItem(string id)
#
ParametersName | Description |
---|---|
id | Id of value to get |
#
DescriptionGet an Item by id
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { var result = InventoryDatabaseV2.instance.GetItem("id"); }
}