Greetings, I’m working on my first t2i generator, and I’m in need of a little assistance.

I want to output 4 images with 4 different attributes for one of the prompt terms. Let’s say shirt color. I understand that I could easily create 4 different outputs, but that would mean duplicating the whole prompt 4 times. I’d rather have it be more concise using one output and dynamically change on reload (with no duplicates).

A consumable list seems like what I would need, but it seems like this still requires 2 outputs?

This works, and outputs my 4 colors correctly with no dupes:

output1
  [c = shirtcolor.consumableList]
output2
  [c]

HTML:

[output1]
[output2]
[output2]
[output2]

I’d prefer it if I could get this to work with just one output. Thanks for any help or tips!

  • @perchanceM
    link
    English
    21 year ago

    I may still be misunderstanding, but maybe this is what you want?

    init
      [e = ethnicity.consumableList, c = shirtColor.consumableList, ""]
    

    And then at the top of your HTML:

    [init]
    

    A fork of your example with those changes: https://perchance.org/ynkght2sbg#edit

    • AshenthornOP
      link
      English
      11 year ago

      This is even better. And much cleaner. Absolutely perfect.

      Initiating the list is definitely the way to go over outputting an array.

      Thanks ever SO much!!

      😲 🤓