EasyTalk API
|
An interface which defines methods for conditional nodes, that is, nodes which output a boolean value based on a condition, and choose an output path to continue the dialogue flow based on that boolean value. More...
Inherited by EasyTalk.Nodes.Logic.CompareNumbersNode, EasyTalk.Nodes.Logic.CompareStringsNode, and EasyTalk.Nodes.Logic.LogicNode.
Public Member Functions | |
NodeConnection | GetTrueOutput () |
Returns the dialogue flow output connection for when the result of the node's condition is true. | |
NodeConnection | GetFalseOutput () |
Returns the dialogue flow output connection for when the result of the node's condition is false. | |
NodeConnection | GetOutput (bool value) |
Returns the dialogue flow output which corresponds to the specified boolean value. | |
An interface which defines methods for conditional nodes, that is, nodes which output a boolean value based on a condition, and choose an output path to continue the dialogue flow based on that boolean value.
NodeConnection EasyTalk.Nodes.Core.ConditionalNode.GetFalseOutput | ( | ) |
Returns the dialogue flow output connection for when the result of the node's condition is false.
Implemented in EasyTalk.Nodes.Logic.CompareNumbersNode, EasyTalk.Nodes.Logic.CompareStringsNode, and EasyTalk.Nodes.Logic.LogicNode.
NodeConnection EasyTalk.Nodes.Core.ConditionalNode.GetOutput | ( | bool | value | ) |
Returns the dialogue flow output which corresponds to the specified boolean value.
value | The value to retrieve a dialogue flow output for. |
Implemented in EasyTalk.Nodes.Logic.CompareNumbersNode, EasyTalk.Nodes.Logic.CompareStringsNode, and EasyTalk.Nodes.Logic.LogicNode.
NodeConnection EasyTalk.Nodes.Core.ConditionalNode.GetTrueOutput | ( | ) |
Returns the dialogue flow output connection for when the result of the node's condition is true.
Implemented in EasyTalk.Nodes.Logic.CompareNumbersNode, EasyTalk.Nodes.Logic.CompareStringsNode, and EasyTalk.Nodes.Logic.LogicNode.