InventoryUI.SetInventoryDisplayName
Declaration#
public void SetInventoryDisplayName(string displayName)Parameters#
| Name | Description |
|---|---|
| displayName | Value 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"); }}