unity assign on click to button inspector code example
Example: how to make an onClick in the inspector unity
using UnityEngine;
using UnityEngine.Events;
public class EventTest : MonoBehaviour {
[Serializable]
public class MyEventType : UnityEvent { }
public MyEventType OnEvent;
}