Answers for "how to make an onClick in the inspector unity"

C#
0

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;
  
  }
Posted by: Guest on August-01-2020

Code answers related to "how to make an onClick in the inspector unity"

C# Answers by Framework

Browse Popular Code Answers by Language