In the code below, the testEvent recognizes the UnityEvent on the dialogueTrigger object, and fills out the testEvent with the same callbacks as the dialogueTrigger has. It does not fill out anything for the sequenceEvent callbacks, in either OnSequenceStart or OnSequenceEnd.
Thanks in advance! Let me know if there's any other context/code I should send.
Code: Select all
using UnityEngine.Events;
using PixelCrushers.DialogueSystem;
public DialogueSystemEvents.SequenceEvents sequenceEvent;
public UnityEvent testEvent;
void Awake()
{
//this fills out the testEvent callbacks in the inspector
testEvent = dialogueTriggers.GetComponent<EventTest>().m_MyEvent;
//this leaves the sequenceEvent callbacks empty
sequenceEvent = dialogueTriggers.GetComponent<DialogueSystemEvents.SequenceEvents>();
}
private void Start()
{
//this runs the callbacks in the testEvent
testEvent.Invoke();
//invoke isn't the correct method to use here, not sure what i should write instead
sequenceEvent.Invoke();
}