Gallery
Enable the Gallery
Open kit_options.rpy
and locate the following line:
define gallery.enabled = False
Replace False
with True
. It should now look like this:
define gallery.enabled = True
Add images to the Gallery
Locate the following line:
define gallery.items = []
Add your image names inside the list surrounded by double-quotes, seperated by commas. For example, this is how you would add the images school
, outside
, and classroom
to the gallery:
define gallery.items = ["school", "outside", "classroom"]
Images with variations
Sometimes, you want one button in the gallery to contain multiple images. To do so, wrap the image names in another list. For example, if you had the variations outsideDay
, outsideNoon
, and outsideNight
, it would look like this:
define gallery.items = ["school", ["outsideDay", "outsideNoon", "outsideNight"], "classroom"]
If you have images with variations in the gallery, there is another option, strict_multiple
that can be customized. By default, this is True
, which means the button will only unlock if all variations are seen. If it's set to False
, the button will unlock even if all variations are not seen.
Variable Mode
The Winter GUI Kit does not currently support Variable Mode. If you would like to request it, please request it in the Discussion Board.