UICursor.IsOverClickeableElement
public bool IsOverClickeableElement { get; }Description#
Gets if the pointer is over a clickable element
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(UICursor target) { bool result = target.IsOverClickeableElement; } }