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