Update StylePile.py
parent
4c87b783ab
commit
88ddf0367b
|
|
@ -141,13 +141,13 @@ ArtMovementImages = list(
|
||||||
|
|
||||||
ResultColorList = {
|
ResultColorList = {
|
||||||
"Not set": "",
|
"Not set": "",
|
||||||
"Primary Colors": ",((primary Colors))",
|
"Primary Colors": ",((Primary Colors))",
|
||||||
"Vivid": ",((vivid Colors)),((vibrant)),((colorful))",
|
"Vivid": ",((vivid Colors)),((vibrant)),((colorful))",
|
||||||
"Pastel Colors": ",((pastel Colors))",
|
"Pastel Colors": ",((pastel Colors))",
|
||||||
"Muted Colors": ",((muted Colors))",
|
"Muted Colors": ",((muted Colors))",
|
||||||
"Grayscale": ",((grayscale))",
|
"Grayscale": ",((grayscale))",
|
||||||
"Black and white": ",((black and white))",
|
"Black and white": ",((black and white))",
|
||||||
"Infrared": ",((infrared))",
|
"Infrared": ",((Infrared))",
|
||||||
"Technicolor": ",((Technicolor))",
|
"Technicolor": ",((Technicolor))",
|
||||||
"Kinemacolor": ",((Kinemacolor))",
|
"Kinemacolor": ",((Kinemacolor))",
|
||||||
"Kodachrome": ",((Kodachrome))",
|
"Kodachrome": ",((Kodachrome))",
|
||||||
|
|
@ -586,7 +586,7 @@ class Script(scripts.Script):
|
||||||
# Pick the mood
|
# Pick the mood
|
||||||
if ddResultMood != "Not set":
|
if ddResultMood != "Not set":
|
||||||
if ddResultMood == "Random":
|
if ddResultMood == "Random":
|
||||||
FinalResultMood = ",(" + random(ResultMoodList) + \
|
FinalResultMood = ",(" + random.choice(ResultMoodList) + \
|
||||||
":" + str(slResultMoodStrength) + ") "
|
":" + str(slResultMoodStrength) + ") "
|
||||||
else:
|
else:
|
||||||
FinalResultMood = ",(" + ddResultMood + \
|
FinalResultMood = ",(" + ddResultMood + \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue