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