Ren'Py Zoom in Effekt

VeritasLex

Newbie
Feb 6, 2020
46
3
Hello.
I have been looking for a zoom in effect for Ren'py for days. I have found something but not really what I am looking for. I don't want it to just zoom in, I want it to go very slowly.
Can someone help me and please not too complicated I am still a big beginner when it comes to ren'py. And my english is not the best either =D
 

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Respected User
Donor
Jun 10, 2017
10,111
14,790
I have been looking for a zoom in effect for Ren'py for days.
The is what you are looking for, and more precisely its property, coupled to the warper and the undocumented truecenter flag.


Python:
label whatever:

    scene someImage:
        truecenter
        linear 1.0 zoom 2.0
This will take one second to pass from the default size to a 2x zoom.
 

VeritasLex

Newbie
Feb 6, 2020
46
3
The is what you are looking for, and more precisely its property, coupled to the warper and the undocumented truecenter flag.


Python:
label whatever:

    scene someImage:
        truecenter
        linear 1.0 zoom 2.0
This will take one second to pass from the default size to a 2x zoom.
First of all, thank you for your answer. So far everything has worked, but when I zoom in slowly the picture wobbles. Can you help me with this too?