Visit ComfyUI Online for ready-to-use ComfyUI environment
Consolidates two boolean inputs into a list for streamlined processing and management of multiple triggers.
The TwoBooleanTrigger
node is designed to handle two boolean inputs and output them as a list. This node is particularly useful when you need to manage multiple boolean conditions simultaneously and pass them to another node that interprets boolean lists. By consolidating two boolean values into a single list, it simplifies the process of handling multiple triggers and ensures that the boolean states are easily accessible for further processing. This node is essential for scenarios where you need to evaluate or manipulate multiple boolean conditions in a streamlined manner.
bool_1
is the first boolean input parameter. It represents one of the two boolean conditions that you want to manage. The default value for this parameter is False
, meaning that if no value is provided, it will be considered as False
. This parameter is crucial as it forms the first element of the boolean list output.
bool_2
is the second boolean input parameter. Similar to bool_1
, it represents another boolean condition that you want to manage. The default value for this parameter is False
. This parameter is equally important as it forms the second element of the boolean list output.
bool_list
is the output parameter of the TwoBooleanTrigger
node. It is a list containing the two boolean values provided as inputs (bool_1
and bool_2
). This list can be used by other nodes that interpret boolean lists, allowing for more complex boolean logic to be implemented. The output list ensures that both boolean conditions are passed together, maintaining their relationship and making it easier to handle multiple conditions in subsequent processing steps.
TwoBooleanTrigger
node when you need to manage and pass multiple boolean conditions to another node that requires a boolean list.bool_1
and bool_2
) according to the conditions you want to evaluate or manipulate, as these will directly affect the output list.False
.bool_1
and bool_2
to avoid unintended default values.bool_list
is not interpreted correctly by subsequent nodes, it may lead to unexpected results.bool_list
output is designed to handle boolean lists and is configured correctly to interpret the list elements.© Copyright 2024 RunComfy. All Rights Reserved.