A game about forced loneliness, made by TACStudios
1using System; 2 3namespace Unity.VisualScripting 4{ 5 /// <summary> 6 /// Called when the pointer presses the GUI element. 7 /// </summary> 8 [UnitCategory("Events/GUI")] 9 [UnitOrder(12)] 10 public sealed class OnPointerDown : PointerEventUnit 11 { 12 public override Type MessageListenerType => typeof(UnityOnPointerDownMessageListener); 13 protected override string hookName => EventHooks.OnPointerDown; 14 } 15}