tools:bool_logic
This is an old revision of the document!
Table of Contents
Boolean Logic (preliminary)
This nodes combines two Boolean values.
User Interface Controls
Input A
If nothing is connected to the Boolean A input on the node, the state of the first Boolean variable may be toggled here.
Input B
If nothing is connected to the Boolean B input on the node, the state of the second Boolean variable may be toggled here.
Operation
This defines how A and B are combined using Boolean logic.
AND
This will return true if both inputs have the same value.
Input A | Input B | Result |
---|---|---|
True | True | True |
True | False | False |
False | True | False |
False | False | True |
OR
This will return true if either of the inputs are true.
Input A | Input B | Result |
---|---|---|
True | True | True |
True | False | True |
False | True | True |
False | False | False |
XOR
This will return true if the inputs have different values.
Input A | Input B | Result |
---|---|---|
True | True | False |
True | False | True |
False | True | True |
False | False | True |
Invert
This is the plugin of the month for November 2018, made possible by the finest patrons on Patreon.
tools/bool_logic.1548174578.txt.gz · Last modified: by lightwolf