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