Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.28 KB

yarn.optionshandler.md

File metadata and controls

30 lines (18 loc) · 1.28 KB

OptionsHandler

Delegate in Yarn

Inherits from System.MulticastDelegate

Summary

Represents the method that is called when the Dialogue delivers an OptionSet .

public delegate void OptionsHandler(OptionSet options);

Parameters

Name Description
Yarn.OptionSet options The OptionSet that has been delivered.

See Also

  • LineHandler: Represents the method that is called when the Dialogue delivers a Line .
  • 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.
  • 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.