I created an image button to make this screen appear below
Code: Select all
screen test_frame():
frame:
xpadding 20
ypadding 10
xalign 0.10
yalign 0.08
vbox:
text "Characters"
null height 10
textbutton "Amelia" action If(renpy.get_screen("amelia01"), Hide("amelia01"), Show("amelia01"))
textbutton "Jimena" action If(renpy.get_screen("jimena01"), Hide("jimena01"), Show("jimena01"))
textbutton "Carla" action If(renpy.get_screen("carla01"), Hide("carla01"), Show("carla01"))As you can see, display a list of characters.
I put this screen before the label start.
My problem is that all the characters in this list are clickable from the beginning of the game
I would like them to appear only at the moment of the story; the moment where I meet the character.
in the renpy documents they talk about a method to make the screens appear but not via an image button
do you know if it is possible to make the button clickable only from a certain point in history?
