Skip to main content

InventoryUI.SetInventoryDisplayName

Declaration#

public void SetInventoryDisplayName(string displayName)

Parameters#

NameDescription
displayNameValue to set

Description#

Set the Inventory's display name

Usage#

Example
using NullSave.GDTK;using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{    public void ExampleMethod(InventoryUI target)    {        target.SetInventoryDisplayNameDisplayName("My New Name");    }}