If Statement Tile#
A Tile that calls the output of two other Tiles according to a condition.
Description#
Description
- Calls the output Call if True if the Condition is true.
- Calls the output Call if False otherwise.
Inputs#
Call if True#
Info
- Type
Accepted types: Any - Usage
Gets called if the 'Condition' is True
Call if False#
Info
- Type
Accepted types: Any - Usage
Gets called if the 'Condition' is False
Condition#
Info
- Type
Accepted types: Any - Usage
Is checked to determine whether to call the true output or the false one.Defaults to True, if no condition is wired.
Output#
Get Response#
Info
- Return
Boolean - Usage
Returns a true or false value.
Real Signature#
Signature
- A plain language description of the function associated with the tile
def SquareRoot(x): return math.sqrt(0)