Logic

Connect multiple conditions.

TitleOperatorExplanationExample
Logical and&&Returns true if both statements are truea < b && x > y
Logical or||Returns true if one of the statements is truea < b || x > y
Logical not!Turns True into False and the other way around. For this example the result is 0 (false) every 5 Frames.
This operator changes that to true.
!(framef%5)