By Dara

 

label dressing_game_1

        CHARACTER (animation)
    What do I want to wear?

choice (OUTFIT_1)
"Outfit 1" {
@CHARACTER changes into Outfit1
#add your own dialogue and animations

} "Outfit 2" {
@CHARACTER changes into Outfit2
#add your own dialogue and animations

} "Outfit 3" {
@CHARACTER changes into Outfit3
#add your own dialogue and animations
}

        CHARACTER (animation)
    Do I want to wear this one?
choice
"It's perfect!" {
#add your own dialogue and animations

} "No, I want to try on the others!" {
goto dressing_game_1
}

To Remember Outfit:

if (OUTFIT_1 is “Outfit 1”) {
@CHARACTER changes into Outfit1

} elif (OUTFIT_1 is “Outfit 2”) {
@CHARACTER changes into Outfit2

} else {
@CHARACTER changes into Outfit3
}