using UnityEngine.Events; using UnityEngine; /// /// This class is used for talk interaction events. /// Example: start talking to an actor passed as paramater /// [CreateAssetMenu(menuName = "Events/Dialogue Actor Channel")] public class DialogueActorChannelSO : ScriptableObject { public UnityAction OnEventRaised; public void RaiseEvent(ActorSO actor) { if (OnEventRaised != null) OnEventRaised.Invoke(actor); } }