Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I can't seem to get any of the front or back positions to work for whatever reason - whenever I try using one the sprite I put in that position doesn't appear ingame. The medium depth ones do work though, so I don't know what's up with that. Using renpy ver 8.2.3^Test with back_center_offleft

^Test with center_offleft

Help would be appreciated, I have no clue why this is happening

Sure, I can help!

Try tossing this at the start of your scenes:

    camera:
        perspective True

This will cause the camera (in reality, the master layer) to use perspective mode, which should straighten that out for you.

Here's the documentation if you want to read more up on it:

https://www.renpy.org/doc/html/3dstage.html#using-the-3d-stage

This works! Thanks :D