InterfaceManager.ObjectsUnderPointer
public static List<RaycastResult> ObjectsUnderPointer { get; }
#
DescriptionReturns a list of objects under the pointer
#
UsageExample
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InterfaceManager target) { System.Collections.Generic.List<UnityEngine.EventSystems.RaycastResult> result = target.ObjectsUnderPointer; } }