If - else
Logical nodes
Last updated
Logical nodes
Last updated
Released in version:
1.0.0
Flutter/Dart link:
The "If-else" node is a conditional logic node. This means that given an input condition, it produces a true or false output.
The node consists of two entry points. The "connector" allows the script to continue the flow at this node. The "condition" allows entering a bool result to be evaluated.
If the "condition" has a value of true, the flow connected to the "true" output is executed. If the "condition" has a false value, the flow connected to the "false" output is executed.
connector
Flow
Allows to continue the flow in this node
condition
Bool
The condition to be evaluated by the node. It must be of type Bool
true
Flow
If the "condition" input is true, flow continues through this output
false
Flow
If the "condition" input is false, flow continues through this output