Loading...

Logo
DocumentationBehaviorsLogicBoolean
Logic

Boolean

Last updated November 27, 2020

Description

Outputs the result of performing a boolean or comparison operation on the operand(s).

Properties

Triggers Immediately

And

Returns true if both operands are not blank.
OrReturns true if at least one operand is not blank.
NorReturns true if both operands are blank.
EqualsReturns true if the operands are equal.
Is a numberReturns true if the operand is a number.
Is a stringReturns true if the operand is a string.
Is an arrayReturns true if the operand is an array.
Is a dictionaryReturns true if the operand is a dictionary.
Is blank

Returns true if operand is an empty array, and empty dictionary, and empty string, or 0.

Contains

Returns true if the first operand contains the second operand

Outputs

Value

Outputs the boolean result of the operation.

Examples

For example, you can use the or behaviour to determine when at least one player's score is no longer 0.

Bitwise Operation

Text Operation