Family Skin tone

Hey I was wondering what was the coding so they can choose their family skin tone. What I mean is after customizing yourself, the narrator ask what is your family skin tone and then the reader choose it. Do anybody know the coding.

1 Like

You can also add a family members to CC so they’ll change the skin tone while the reader is customising MC :grin: (make sure you place them offscreen)

^^ The easiest way, so that you don’t even have to ask the reader to choose family skin tone, is to automatically set it when the reader customizes their own skin tone, like this:

label bodyColor_1

    NARRATOR
What skin color would you like?

choice
“Ivory” {
@AUNT changes bodyColor into Ivory
@MOM changes bodyColor into Ivory
@FAMILYMEMBER changes bodyColor into Ivory
@YOU changes bodyColor into Ivory
@YOU starts idle_happy
goto bodyColor_1
}
“Fair” {
@AUNT changes bodyColor into Fair
@MOM changes bodyColor into Ivory
@FAMILYMEMBER changes bodyColor into Ivory
@YOU changes bodyColor into Fair
@YOU starts idle_happy
goto bodyColor_1
}

etc.
Even if the player tries out a bunch of different skin colors, the family members will also keep changing until they finally make a decision.

1 Like