You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, reading from a wildcards.txt file using the syntax shown below leads to wildcards in alphabetical order.
{% for wildcard in wildcard("__wildcards__") %}
This means that a file of the form:
morning
sunset
night
would generate "night" before "sunset".
This is unfortunate because it hinders generating images in chronological order. Therefore, stories, aging characters, and day-night cycles would be shuffled.
The one workaround I could find was creating a wildcard.txt of the form:
(a:0) <prompt>
(b:0) <prompt>
(c:0) <prompt>
Unfortunately, this is enough to corrupt some simple prompts.
Please do let me know if there is any way to achieve
The text was updated successfully, but these errors were encountered:
Currently, reading from a wildcards.txt file using the syntax shown below leads to wildcards in alphabetical order.
{% for wildcard in wildcard("__wildcards__") %}
This means that a file of the form:
would generate "night" before "sunset".
This is unfortunate because it hinders generating images in chronological order. Therefore, stories, aging characters, and day-night cycles would be shuffled.
The one workaround I could find was creating a wildcard.txt of the form:
Unfortunately, this is enough to corrupt some simple prompts.
Please do let me know if there is any way to achieve
The text was updated successfully, but these errors were encountered: