Visit ComfyUI Online for ready-to-use ComfyUI environment
Consolidates four boolean inputs into a list for streamlined logical operations in AI art projects.
The FourBooleanTrigger
node is designed to handle four boolean inputs and return them as a list. This node is particularly useful when you need to manage multiple boolean conditions simultaneously and pass them as a single entity to other nodes or processes. By consolidating four boolean values into a list, it simplifies the handling and interpretation of multiple conditions, making it easier to manage complex logical operations in your AI art projects. This node is essential for scenarios where multiple triggers or conditions need to be evaluated together, providing a streamlined approach to boolean logic management.
bool_1
is the first boolean input parameter. It represents a true or false condition that you want to include in the list of boolean values. The default value is False
, meaning that if no value is provided, it will be considered as False
. This parameter is crucial for defining the first condition in your set of boolean triggers.
bool_2
is the second boolean input parameter. Similar to bool_1
, it represents another true or false condition to be included in the boolean list. The default value is False
. This parameter helps in defining the second condition in your boolean logic setup.
bool_3
is the third boolean input parameter. It adds another layer of condition to your boolean list, with a default value of False
. This parameter is used to define the third condition in your set of boolean triggers.
bool_4
is the fourth boolean input parameter. It completes the set of four boolean conditions, with a default value of False
. This parameter is essential for defining the fourth and final condition in your boolean logic setup.
bool_list
is the output parameter that returns a list of the four boolean values provided as inputs (bool_1
, bool_2
, bool_3
, and bool_4
). This list is crucial for passing the consolidated boolean conditions to other nodes or processes, enabling more complex logical operations and decision-making in your AI art projects.
FourBooleanTrigger
node when you need to evaluate and manage multiple boolean conditions together, simplifying the logical flow of your project.TypeError: 'NoneType' object is not iterable
None
.bool_1
, bool_2
, bool_3
, bool_4
) are provided and have valid boolean values (True
or False
).ValueError: Invalid boolean value
True
or False
).True
or False
). Avoid using other data types such as strings or numbers.© Copyright 2024 RunComfy. All Rights Reserved.