initial commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Events;
|
||||
using UnityEngine.EventSystems;
|
||||
|
||||
[RequireComponent(typeof(OutlineFx.OutlineFx))]
|
||||
public class MyButton : MonoBehaviour, IPointerClickHandler, IPointerEnterHandler, IPointerExitHandler
|
||||
{
|
||||
[SerializeField]
|
||||
private UnityEvent _onClick;
|
||||
|
||||
|
||||
// references
|
||||
private OutlineFx.OutlineFx _outlineFx;
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
_outlineFx = GetComponent<OutlineFx.OutlineFx>();
|
||||
}
|
||||
|
||||
public void OnPointerClick(PointerEventData eventData)
|
||||
{
|
||||
_onClick.Invoke();
|
||||
}
|
||||
public void OnPointerEnter(PointerEventData eventData)
|
||||
{
|
||||
_outlineFx.enabled = true;
|
||||
}
|
||||
public void OnPointerExit(PointerEventData eventData)
|
||||
{
|
||||
_outlineFx.enabled = false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user