Ren'Py ¿Ren'Py code has changed? [SOLVED]

iOtero

Active Member
Aug 4, 2020
928
1,463
I'm asking if Ren'Py's code has changed because this code to make a moving panorama of an image worked perfectly until I upgraded to version 8.3.4:

Code:
    window hide
    scene 01_155_g:
        subpixel True
        yalign 0.0
        pause 0.5
        linear 9.0 yalign 1.0
    pause
01_155_g is a 1920x3240 pixels png.

Anyone know if this code has changed?

Thank you four your help.
 

peterppp

Erect Member
Donor
Mar 5, 2020
909
1,734
I'm asking if Ren'Py's code has changed because this code to make a moving panorama of an image worked perfectly until I upgraded to version 8.3.4:

Code:
    window hide
    scene 01_155_g:
        subpixel True
        yalign 0.0
        pause 0.5
        linear 9.0 yalign 1.0
    pause
01_155_g is a 1920x3240 pixels png.

Anyone know if this code has changed?

Thank you four your help.
what version of renpy did you change from?
what is the error you're getting?

if it's just a matter of not showing the image, perhaps you must supply the full path to the image when you're defining 01_155_g, like "imagefolder/imagename".
 

iOtero

Active Member
Aug 4, 2020
928
1,463
what version of renpy did you change from?
what is the error you're getting?

if it's just a matter of not showing the image, perhaps you must supply the full path to the image when you're defining 01_155_g, like "imagefolder/imagename".
The image appears on the screen, but as it is bigger, it is distorted. What happened before is that the image moved across the screen and the whole image could be seen.

The same code, in games developed with an earlier version (8.1.1) and run with version 8.3.4, works correctly. It's weird.
 
Last edited:

iOtero

Active Member
Aug 4, 2020
928
1,463
Solved. It was a problem with the image format, not with the code. Thanks to everyone and sorry for the inconvenience.
 
  • Like
Reactions: osanaiko