AND
Last updated
Last updated
The AND is a logical operator Node which takes two or more Booleans and returns a single Boolean.
The Node checks whether or not all Inputs are true. If they are all true, then the Output
Value will be true. If, however, a single one of the Inputs is false, Output
will also be false.
Input 1 | Input 2 | Output |
---|---|---|
True | True | True |
True | False | False |
False | True | False |
False | False | False |
Attribute | Type | Description |
---|---|---|
| Int | The number of Data Input Sockets the Node will have. |
Input | Type | Description |
---|---|---|
Pulse Input (►) | Pulse | A standard Input Pulse, to trigger the execution of the Node. |
| Bool | The Boolean Values to be checked. |
Output | Type | Description |
---|---|---|
Pulse Output (►) | Pulse | A standard Output Pulse, to move onto the next Node along the Logic Branch, once this Node has finished its execution. |
| Bool | Whether or not all of the Inputs are true. |