I’ve been using tappable overlays for my dressing games and want to be able to use a ‘done’ tappable overlay but that means i won’t be able to use if/elif/else to remember the outfits. does anyone know how to remember outfits using tappable overlays? this is my work:
1 Like
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
Thank you so much!!
1 Like
did you use her method and did it work for you?
