- May 26, 2017
- 838
- 2,810
I am using renpy.seen_label() for a gallery.
gallery_picked[l] is a label found in a .csv file.
One of the labels can't be seen through a normal playthrough and is therefore locked.
Is there a way to force this label to be "seen" without actually seeing it?
Code:
screen gallery:
frame:
for i in range(0,len(gallery_picked)):
if renpy.seen_label(gallery_picked[i]):
One of the labels can't be seen through a normal playthrough and is therefore locked.
Is there a way to force this label to be "seen" without actually seeing it?