NodeCompleteHandler
Summary
public delegate void NodeCompleteHandler(string completedNodeName);Remarks
Parameters
Name
Description
See Also
Last updated
Was this helpful?
Delegate in Yarn
Inherits from System.MulticastDelegate
Represents the method that is called when the Dialogue reaches the end of a node.
public delegate void NodeCompleteHandler(string completedNodeName);This method may be called multiple times over the course of code execution. A node being complete does not necessarily represent the end of the conversation.
string completedNodeName
The name of the node.
LineHandler: Represents the method that is called when the Dialogue delivers a Line .
OptionsHandler: Represents the method that is called when the Dialogue delivers an OptionSet .
CommandHandler: Represents the method that is called when the Dialogue delivers a Command .
NodeStartHandler: Represents the method that is called when the Dialogue begins executing a node.
DialogueCompleteHandler: Represents the method that is called when the dialogue has reached its end, and no more code remains to be run.
Last updated
Was this helpful?
Was this helpful?
