Outputs | |||||
Value | boolean |
The result of the And operation. Returns true only when both inputs are true, and returns false otherwise. | |||
Inputs | |||||
boolean | A |
The first input value. | |||
boolean | B |
The second input value |
Returns false if either or both inputs are false.
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.
Outputs | |||||
Value | boolean |
The result of the Equals operation. Returns true if if both inputs are equal and false otherwise. | |||
Inputs | |||||
boolean | A |
The first input value. | |||
boolean | B |
The second input value |
Returns false if they differ.
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.
Outputs | |||||
Value | boolean |
The inverted boolean value. | |||
Inputs | |||||
boolean | Bool |
The boolean value to invert. |
i.e. True becomes False.
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.
Outputs | |||||
Value | boolean |
The result of the Not Equal operation. Returns true if if both inputs are not equal and false otherwise. | |||
Inputs | |||||
boolean | A |
The first input value. | |||
boolean | B |
The second input value |
Returns false if they are equal.
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.
Outputs | |||||
Value | boolean |
The result of the Or operation. Returns true when either or both inputs are true, and returns false otherwise. | |||
Inputs | |||||
boolean | A |
The first input value. | |||
boolean | B |
The second input value |
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.
Outputs | |||||
Value | boolean |
The result of the XOr operation. Returns true when one and only one of the inputs is true, and returns false otherwise. | |||
Inputs | |||||
boolean | A |
The first input value. | |||
boolean | B |
The second input value |
Available in Unit Flow Editor, Level Flow Editor, and External Flow Editor.