Remembering tappable overlay dressing game

You could use a point system to remember! So everytime a character switches outfits, you could have an arbitrary character named “OUTFIT” or something, and just write:

tappable
“OUTFITBUBBLE1” {
#outfit change
@OUTFIT =1
#goto label
} “OUTFITBUBBLE2” {
#outfit change
@OUTFIT =2
#goto label
} “OUTFITBUBBLE3” {
#outfit change
@OUTFIT =3
#goto label
}

Then, when you want to remember the outfit choice, all you’d need to do is this:

if (OUTFIT = 1) {
#change into outfitbubble1
} elif (OUTFIT = 2) {
#change into outfitbubble2
} else {
#change into outfitbubble3
}

1 Like