Nodes > Math > Relational
And
Returns 1 if both input values are non-zero, otherwise returns 0.
Conditional
Returns the False input if the passed in value is 0, otherwise returns the True input.
If / else
Returns the first Value where the matching Condition is true (not 0), or returns Default if all are 0.
Is All
Returns 1 if all elements of the input vector are non-zero, returns 0 otherwise.
Is Any
Returns 1 if any element of the input vector is non-zero, otherwise returns 0.
Is Equal
Returns 1 if A == B, returns 0 otherwise. This is calculated separately for each channel.
Is Greater
Returns 1 if A > B, returns 0 otherwise. This is calculated separately for each channel.
Is Greater or Equal
Returns 1 if A >= B, returns 0 otherwise. This is calculated separately for each channel.
Is Less
Returns 1 if A < B, returns 0 otherwise. This is calculated separately for each channel.
Is Less or Equal
Returns 1 if A <= B, returns 0 otherwise. This is calculated separately for each channel.
Is Not Equal
Returns 1 if A != B, returns 0 otherwise. This is calculated separately for each channel.
Not
Returns 1 if the value is 0, otherwise returns 0. This is calculated separately for each channel.
Or
Returns 1 if either input value is non-zero, otherwise returns 0.
Switch
Returns a Case value based on the passed in Switch index.
XOr
Returns 1 if exactly one of the inputs equals 0. Otherwise, returns 0.