Skip to main content

GDTKItem.displayName

public string displayName { get; }

Description#

Get the current display name to use for this item

Usage#

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