Skip to main content
This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! Edit on GitHub
This node shuffles a list of images and a list of texts together, keeping their pairings intact. It uses a random seed to determine the shuffle order, ensuring the same input lists will be shuffled in the same way each time the seed is reused.

Inputs

ParameterData TypeRequiredRangeDescription
imagesIMAGEYes-List of images to shuffle.
textsSTRINGYes-List of texts to shuffle.
seedINTNo0 to 18446744073709551615Random seed. The shuffle order is determined by this value (default: 0).
Note: The images and texts inputs must be lists of the same length. The node will pair the first image with the first text, the second image with the second text, and so on, before shuffling these pairs together.

Outputs

Output NameData TypeDescription
imagesIMAGEThe shuffled list of images.
textsSTRINGThe shuffled list of texts, maintaining their original pairings with the images.