🫥

  • 3 Posts
  • 17 Comments
Joined 1 year ago
cake
Cake day: October 18th, 2024

help-circle











  • In the example in my last comments is possible to edit. If you want the generation to use the edits made in the prompt box, then check the line 44 in the left panel, there is this code “prompt = [prompt.input || input.artStyle.prompt]”

    So if there is something in there (prompt.input) it will use the edits. If not then the input.artStyle.prompt will be used. The “||” means “or”, if there is no data (empty string) then it will skip to the next item, so that says (use the thing from prompt.input, OR, use the thing from input artStyle.prompt)

    note that “prompt.input” is the variable declared in the right panel, it is not the same as “input.fullprompt”, but you can use “input.fullprompt” or whatever is the name of your inputs without problem