Hope some wise sage will be able to give some advice on the problem I'm facing. I've tried searching extensively but maybe I'm alone here?
I'm currently modding a game and adding a gallery mode.
I have created a new directory,
I noticed that when the archive is created, and subsequently extracted, I notice the folder is not being included.
In
And it's being called within
edit: corrected typo in extensions from .py to .rpy, formatting.
I'm currently modding a game and adding a gallery mode.
I have created a new directory,
gallery
, inside game/images
, and this all works when launching with the Renpy Launcher. But when I produce a distribution (Windows in this case), I get the following error:
Python:
While loading <'Image' u'images/gallery/gallery bg.png'>:
IOError: Couldn't find file 'images/gallery/gallery bg.png'.
In
options.rpy
I have:
Python:
build.classify('game/**.png', 'archive')
gallery1.rpy
Python:
screen cg_gallery_01():
# Ensure this replaces the main menu.
tag menu
# The background.
image "images/gallery/gallery bg.png"
#add "images/gallery/gallery bg.png"
Last edited: