Ren'Py Completed Renpy Side images *solved*

TheRealRocky

New Member
Nov 10, 2022
5
1
Hi, I hope somebody can help me here...

I work on my first AVN right now, it's also the first time I am working with Renpy, and I couldn't find a solution for the following problem:

I defined my characters with their side images like this:
Screenshot 2022-11-25 110842.jpg

For the first character Lucas it works fine,

Screenshot 2022-11-25 110815.jpg


but for the second character Jesse it doesn't work at all...

Screenshot 2022-11-25 110752.jpg

both pictures have the same size, are both .png files and have the same name order, its
side Lucas.png and
side Jesse.png.

I really don't know where the problem could be
 

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Respected User
Donor
Jun 10, 2017
10,125
14,803
I defined my characters with their side images like this:
View attachment 2192383
[...]
but for the second character Jesse it doesn't work at all...
Unless you explicitly declare them (image NAME = "PATH/FILE.EXT"), all image names in Ren'Py are in lowercase. This whatever the effective name of the file.

Therefore, either do this, image side Jesse = "side Jesse.png", or that define J = Character( "Jesse", image="jesse" ). The second being way better.


Side note: Next time, posting you question in the development help section would be better.
 
  • Like
Reactions: TheRealRocky