mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
31 lines
713 B
C#
31 lines
713 B
C#
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
using UnityEngine.EventSystems;
|
|
using System;
|
|
|
|
|
|
namespace TMPro
|
|
{
|
|
|
|
public class TMP_ScrollbarEventHandler : MonoBehaviour, IPointerClickHandler, ISelectHandler, IDeselectHandler
|
|
{
|
|
public bool isSelected;
|
|
|
|
public void OnPointerClick(PointerEventData eventData)
|
|
{
|
|
Debug.Log("Scrollbar click...");
|
|
}
|
|
|
|
public void OnSelect(BaseEventData eventData)
|
|
{
|
|
Debug.Log("Scrollbar selected");
|
|
isSelected = true;
|
|
}
|
|
|
|
public void OnDeselect(BaseEventData eventData)
|
|
{
|
|
Debug.Log("Scrollbar De-Selected");
|
|
isSelected = false;
|
|
}
|
|
}
|
|
}
|