CraftingInteractable.CurrentAgent
public Interactor CurrentAgent { get; set; }Description#
Currently active Interactor
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(CraftingInteractable target) { Interactor result = target.CurrentAgent; } }