InteractorMouse.activeUI
public InteractorUI activeUI { get; }Description#
Gets the currently active UI for this object
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InteractorMouse target) { InteractorUI result = target.activeUI; } }