Ren'Py reposition image

Home Edit


This post goes over how to reposition an image in Ren’Py using a transform statement.

ypos

Transform to reposition an image on the y-axis:

transform ypos(position):
    ypos position

For example, move a sprite down in game/script.rpy:

show eileen at ypos(1.25), center

See ypos for more details.

xpos

Transform to reposition an image on the y-axis:

transform xpos(position):
    xpos position

For example, move a sprite to the center in game/script.rpy:

show eileen at xpos(0.5)

See xpos for more details.