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