Skip to main content

ItemContainer.DataLoadJSON

Declaration#

public virtual void DataLoadJSON(string json)

Parameters#

NameDescription
jsonData to load

Description#

Load data from a JSON string

Usage#

using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
    public void Example(ItemContainer target, string json)    {        target.DataLoadJSON(json);    }
}