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