Page 1 of 1

Changing color per dialogue ? [SOLVED]

Posted: Sat Jul 02, 2016 2:57 pm
by pratomoastan
Hai i want to ask is it possible to change the dialogue color every characters ?

Code: Select all

#global
define e = Character('Eko', color="#33aaee", who_color="#33aaee", what_font="font/sansani.otf")
define n = Character('Neis', color="#eb6111", who_color="#eb6111", what_font="font/sansani.otf")
define g = Character('Grace', color="#ff005a", who_color="#ff005a", what_font="font/sansani.otf")
I Already Did That But Its Only Change The Color Of The Characters Name Not The Dialogue

Code: Select all

e "テンサイ" <<< i want this dialogue text became #33aaee
show ghbod at right with move and dissolve and fade
g "テンサイ" <<<< #i want this dialogue text became eb6111
show nhbod at center with move and dissolve and fade
n "*テンサイ'" <<< #i want this dialogue text became ff005a 
Any Ideas ?
I Dont Want To Use

Code: Select all

style.default.color = "#b10821"
Because It Will Just Change All Of The Dialogue Text To Red ><

Re: Changing color per dialogue ?

Posted: Sat Jul 02, 2016 3:30 pm
by Shimrra
I think you're looking for the tag "what_color"

Code: Select all

define e = Character('Eko', color="#33aaee", who_color="#33aaee", what_font="font/sansani.otf", what_color="#33aaee")

Re: Changing color per dialogue ?

Posted: Sat Jul 02, 2016 8:23 pm
by pratomoastan
Shimrra wrote:I think you're looking for the tag "what_color"

Code: Select all

define e = Character('Eko', color="#33aaee", who_color="#33aaee", what_font="font/sansani.otf", what_color="#33aaee")
Huehuehuehue
Thanks !! ><