EasyUse/🚫 Deprecatedgenerated

LatentCompositeMaskedWithCond (🚫Deprecated)(latentCompositeMaskedWithCond)

LatentCompositeMaskedWithCond (🚫Deprecated) node from ComfyUI-Easy-Use.

latent Composite Masked With Cond

pipe
text_combine
source_latent
source_mask
destination_mask
pipe
latent
conditioning
text_combine_mode
add
replace_text
STRING
Easy Use

This node is marked 🚫 Deprecated in the ComfyUI-Easy-Use package. It is kept for compatibility with older workflows and should not be used for new ones unless you are intentionally maintaining an existing deprecated pipeline.

Description

LatentCompositeMaskedWithCond composites a source latent onto the latent stored in an EasyUse PIPE_LINE, using a source mask and a destination mask to control where the composite is applied. It also processes a list of text prompts through text_combine and produces updated conditioning alongside the updated pipe and composited latent.

This node is effectively a legacy integration between latent masking/compositing and conditioning text handling, all mediated by the EasyUse pipeline object.

Inputs

pipe

The EasyUse PIPE_LINE that carries the destination latent, existing conditioning, and other pipeline state. The node reads the destination latent from this pipe and returns an updated pipe as its first output.

text_combine

A LIST of text strings used to generate or modify conditioning. How this list is applied depends on text_combine_mode.

source_latent

The LATENT to composite onto the latent contained in pipe.

source_mask

A MASK that defines the active region of source_latent used during compositing.

destination_mask

A MASK that defines where the source composite is applied on the destination latent.

text_combine_mode

A COMBO with options:

  • add (default): The supplied text_combine texts are added to the existing conditioning.
  • replace: The supplied texts replace the existing conditioning.
  • cover: The supplied texts cover/override the existing conditioning.

replace_text

A STRING containing the replacement text used when the selected text-combine mode requires a replacement. Defaults to an empty string.

Outputs

PIPE_LINE

The updated EasyUse pipeline, including the composited latent and the modified conditioning.

LATENT

The resulting latent after compositing source_latent onto the pipe latent using source_mask and destination_mask.

CONDITIONING

The conditioning generated from text_combine, text_combine_mode, and replace_text.

Usage Notes

Because this node is deprecated, prefer current EasyUse nodes or core ComfyUI nodes such as LatentCompositeMasked for new workflows. If you only need latent compositing without the conditioning or pipe-handling behavior, the core node is the appropriate replacement.

The conditioning output depends on the EasyUse pipe's existing conditioning and the selected text_combine_mode, so workflows should ensure the pipe is correctly initialized before reaching this node. The source and destination masks should be prepared with the same spatial alignment expected by the latent composite operation.

Comments

Sign in with GitHub to join the discussion.

Loading comments…