StatInteractable.IsInteractable
public bool IsInteractable { get; }Description#
Is the object currently interactable
Usage#
Example
using NullSave.GDTK.Statsusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(StatInteractable target) { bool result = target.IsInteractable; } }