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