using System; namespace Unity.VisualScripting { /// /// Called when the pointer presses the GUI element. /// [UnitCategory("Events/GUI")] [UnitOrder(12)] public sealed class OnPointerDown : PointerEventUnit { public override Type MessageListenerType => typeof(UnityOnPointerDownMessageListener); protected override string hookName => EventHooks.OnPointerDown; } }