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