You are viewing documentation for v1.1. Switch to current version โ†’

๐ŸŽญ Boolean Condition

Short Description

A condition that evaluates boolean values based on the set mode.

Long Description

UGorgeousBooleanCondition evaluates simple boolean logic to select between two indices. It uses two boolean properties, A and B, and applies a logical operation based on the selected mode to determine whether to return index 0 (false) or index 1 (true) for the chooser. This allows for flexible selection logic in conditional object choosers, enabling developers to create dynamic behavior based on simple boolean conditions.

๐Ÿš€ Features

CheckCondition

The CheckCondition function evaluates the boolean inputs A and B based on the selected mode (e.g., AND, OR, XOR) and returns a uint8 value that indicates the result of the evaluation. This value is used by the chooser to determine which object variable to return.

See the Conditions page for the full function documentation and usage examples.

๐Ÿ“š Properties

Property Type Category Description
A bool Input The first boolean input.
B bool Input The second boolean input.