Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

I'm still learning renpy and whatnot, so I'm not sure how to actually get the sprites to move to the stage spots. i did put the files in like told, but i'm not understanding what i have to do to get character a to be in scene_back_left_far position... any help is appreciated!

Hey there!  Sorry about the delay.  You'll want to check the RenPy documentation for how transforms work.

https://www.renpy.org/doc/html/transforms.html

RenPy has a few built in ones, like 'at right' or 'at left', etc.  The pack here gives you more of those prebaked options with the ability to tweak their y and x positions in the configuration.

In one of their examples:

show eileen happy at right

In short, you can add 'at scene_back_left_far' to the end of a line where you show a sprite and it'll move them there.  

It would then look like this:

show eileen happy at scene_back_left_far

Hope that helps!