InventoryInteractable.InteractionText
public string InteractionText { get; }Description#
Text to display in the UI
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InventoryInteractable target) { string result = target.InteractionText; } }