InteractorUI.target
public InteractableObject target { get; set; }Description#
Get/Set the target interactable object
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class ExampleScript : MonoBehaviour{
public InteractorUI source;
private void Start() { Debug.Log(source.target.gameObject.name); }
}