MultiActionInteractorUI.target
public InteractableObject target { get; set; }Description#
Get/Set the target interactable object
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(MultiActionInteractorUI target) { InteractableObject result = target.target; } }