InWorldContainer.displayName
public string displayName { get; set; }Description#
Name of the creature or object attached
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InWorldContainer target) { string result = target.displayName; } }