Hi,
Is it possible to know actor name in the custom C# Lua function?
actor name on C# Custon Lua function
Re: actor name on C# Custon Lua function
Hi,
To get the current node's speaker and listener names:
To get the current node's speaker and listener names:
Code: Select all
string speakerName = DialogueManager.currentConversationState.subtitle.speakerInfo.Name;
string listenerName = DialogueManager.currentConversationState.subtitle.listenerInfo.Name;