InteractorUI.source
public Interactor source { get; set; }Description#
Get/Set the interactor displaying this UI
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class ExampleScript : MonoBehaviour{
public InteractorUI source;
private void Start() { Debug.Log(source.source.gameObject.name); }
}