LineHandler Delegate
Represents the method that is called when the Dialogue delivers
a Line
.
public delegate Dialogue.HandlerExecutionType LineHandler(Line line);
Parameters
Parameter | Description |
---|---|
Line line |
The Line that has been delivered. |
Return Type
Dialogue.HandlerExecutionType
: Whether the Dialogue
should suspend
execution after delivering this line.
See Also
-
Dialogue.HandlerExecutionType
: Used as a return type by handlers (such as theDialogue.LineHandler
) to indicate whether aDialogue
should suspend execution, or continue executing, after it has called the handler. -
Dialogue.OptionsHandler
: Represents the method that is called when the Dialogue delivers anOptionSet
. -
Dialogue.CommandHandler
: Represents the method that is called when the Dialogue delivers aCommand
. -
Dialogue.NodeCompleteHandler
: Represents the method that is called when the Dialogue reaches the end of a node. -
Dialogue.DialogueCompleteHandler
: Represents the method that is called when the dialogue has reached its end, and no more code remains to be run.
Source
Defined in YarnSpinner/Dialogue.cs, line 377.