ItemContainer.DataLoadJSON
Declaration#
public virtual void DataLoadJSON(string json)Parameters#
| Name | Description |
|---|---|
| json | Data 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); }
}