Logic Nodes
Logic nodes make use of boolean values, represented by numbers with value 1 (true), and 0 (false).
These nodes can be used to output different numbers based on a boolean value.
Greater Than
If Input is Greater than Threshold, outputs a 1. Otherwise, this node outputs 0.
Less Than
If Input is Less than Threshold, outputs a 1. Otherwise, this node outputs 0.
Is Equal
If Input is Equal to Threshold, outputs a 1. Otherwise, this node outputs 0.
Spigot
Outputs the value of Input, but only updates the value when Comparator is true.
AND Gate
Has two comparator inputs. If both comparator inputs are true, this node outputs true. Otherwise, it outputs false
OR Gate
Has two comparator inputs. If one or more comparator inputs are true, this node outputs the true. Otherwise, it outputs false.
NOT Gate
Has one comparator input. If the comparator input is 0, this node outputs true. Otherwise, it outputs false.
Value If True
Has one comparator output, as well as two Value inputs for true or false. If comparator is equal to 1 (true), it outputs the Value If True. Else, it outputs the Value If False.