Сharacter change event
Posted: Fri Jun 02, 2023 5:14 am
Is there an event in the system that is activated when changing the character?
Support and discussion forum for Pixel Crushers products
https://www.pixelcrushers.com:443/phpbb/
https://www.pixelcrushers.com:443/phpbb/viewtopic.php?t=7092
Code: Select all
private int lastSpeakerID;
void OnConversationStart(Transform actor) { lastSpeakerID = -1; }
void OnConversationLine(Subtitle subtitle)
{
if (string.IsNullOrEmpty(subtitle.formattedText.text)) return;
if (subtitle.speakerInfo.id != lastSpeakerID)
{
Debug.Log($"{subtitle.speakerInfo.Name} started speaking.");
lastSpeakerID = subtitle.speakerInfo.id;
}
}