- Jun 10, 2018
- 6,327
- 22,776
Alright, this might be getting a bit complex, so be aware^^
I have my gallery setup like this:
and some of these imagebuttons use animations that are gender specific:
I'm trying to show them separately in the gallery. At first I thought it would show the gender last played, which would've been okay, but it doesn't. It seems to take the default value all the time which is male, so I tried to force a gender by putting the same "image" twice in the list with different gender (hence the second empty value in the list) and setting
I want to avoid using a menu for choosing the gender here and would prefer to have the animations (images) only shown when it really was seen in the game previously.
I think I'm missing something here, but I can't figure it out
I have my gallery setup like this:
You don't have permission to view the spoiler content.
Log in or register now.
Python:
image bjhmovpov = ConditionSwitch(
"pcgender == 'woman'", Movie(play="anim/bjh2_fem.webm"),
"True", Movie(play="anim/bjh2.webm"))
$ pcgender = nameByID[i][1]
within the loop, but that also doesn't work, it's always the male version that's shown.I want to avoid using a menu for choosing the gender here and would prefer to have the animations (images) only shown when it really was seen in the game previously.
I think I'm missing something here, but I can't figure it out