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