renpy/doc/reference/functions/ImageReference
From Ren'Py
ImageReference
| Function: | ImageReference | (name): |
This displayable accesses images declared using the image statement. name may be a string, or a tuple of strings giving the components of the image name.
This always a displayable, and may also be an image manipulator if name is declared to refer to an image manipulator.
Example
image eileen happy = "eileen_happy.png" image eileen vhappy = "eileen_vhappy.png" image eileen animation = Animation(ImageReference("eileen happy"), 1, ImageReference("eileen vhappy"), 1)
