For the complete documentation index, see llms.txt. This page is also available as Markdown.

NodeStartHandler

Delegate in Yarn

Inherits from System.MulticastDelegate

Summary

Represents the method that is called when the Dialogue begins executing a node.

public delegate void NodeStartHandler(string startedNodeName);

Parameters

Name
Description

string startedNodeName

The name of the node.

See Also

  • 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 .

  • NodeCompleteHandler: Represents the method that is called when the Dialogue reaches the end of 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?