Skip to main content

GDTKItem.ToJSON

Declaration#

public string ToJSON()

Description#

Convert item into JSON

Usage#

using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
    public void Example(GDTKItem target)    {        string result = target.ToJSON();    }
}