InventoryDatabase.JSONExport
#
Declarationpublic string JSONExport()
#
DescriptionExport all data to json
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { string json = InventoryDatabase.instance.JSONExport(); InventoryDatabase.instance.JSONImport(json, true); }
}