I am currently working on a LITTLE RenPy game and have a BIG problem
It's about assigning the color for the namebox and for the dialogbox of the characters whose name I want to change by typing.
As long as the name is a string, it works.
But if I use sense, replace the string with a variable, the colors are gone.
Then I also tried with :
I suspect this is a style-thing...
Has anyone dealt with this before? I would be happy.
It's about assigning the color for the namebox and for the dialogbox of the characters whose name I want to change by typing.
Python:
define uw = Character("Unknown woman", who_color="#FC15F9", what_color="#FA7BF9")
But if I use sense, replace the string with a variable, the colors are gone.
Python:
$ uw = renpy.input("<Standard-Name is Unknown woman> Just call me:")
$ uw = uw.strip()
if uw == "":
$ uw = Character("Unknown woman", who_color="#FC15F9", what_color="#FA7BF9") ### it works
$ uw = Character("[uw]", who_color="#FC15F9", what_color="#FA7BF9") ### The name "Sarah" is correct but the color is gone.
Python:
elif():
$ uw = Character("[uw]", who_color="#FC15F9", what_color="#FA7BF9") ### Like above
I suspect this is a style-thing...
Has anyone dealt with this before? I would be happy.