Skip to main content

GDTKItem.customName

public string customName { get; set; }

Description#

Get/Set the custom name for this item

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(GDTKItem target)    {        string result = target.customName;    }   }