1234567891011121314151617181920212223242526272829303132 |
-
- using System;
- using UnityEngine;
- using UnityEngine.EventSystems;
- namespace NRKernal.NRExamples
- {
-
- public class UserDefineButton : MonoBehaviour, IPointerClickHandler
- {
-
- public Action<string> OnClick;
-
-
- public void OnPointerClick(PointerEventData eventData)
- {
- if (OnClick != null)
- {
- OnClick(gameObject.name);
- }
- }
- }
- }
|