InventoryInteractable.IsInteractable
public bool IsInteractable { get; }Description#
Get if object is interactable
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InventoryInteractable target) { bool result = target.IsInteractable; } }