Hahaha first time I see a complain about the panning/zooming of the renders but I can understand why some can get distracted and annoyed by it. I don't mind it and already got used to it and now wouldn't want it any other way but lets see what Classy Lemon says about it and what can be done.
Actually, it would help a lot if we could set the speed. Maybe one of the code wizards here know what file/variable to change to speed it up?
Edit:
Ok, I figured it out, these things are causing the problem:
Python:
scene inter1_4 1 with dissolve:
subpixel True
xalign 0.0 yalign 0.5
zoom 1.1
easein 50.0 xalign 1.0
Python:
scene inter1_8 1 with slowdissolve:
subpixel True
xalign 0.0 yalign 0.5
zoom 1.1
easein 40.0 xalign 1.0
1. With a text editor, search for the word 'easein' in all the *.rpy files.
2. Replace all the variants with something more sane (5 is still cinematic, but I prefer 3):
a) 'replace in all *.rpy files' -> 'easein 20' with 'easein 3'
b) 'replace in all *.rpy files' -> 'easein 30' with 'easein 3'
c) 'replace in all *.rpy files' -> 'easein 35' with 'easein 3'
d) 'replace in all *.rpy files' -> 'easein 40' with 'easein 3'
e) 'replace in all *.rpy files' -> 'easein 50' with 'easein 3'
f) 'replace in all *.rpy files' -> 'easein 50' with 'easein 3'
I found 819 instances in S1 alone!
You also need to replace the following:
' ease ' (note the spaces!) with ' ease 3':
a) 'replace in all *.rpy files' -> ' ease 10' with ' ease 3'
a) 'replace in all *.rpy files' -> ' ease 15' with ' ease 3'
a) 'replace in all *.rpy files' -> ' ease 20' with ' ease 3'
a) 'replace in all *.rpy files' -> ' ease 25' with ' ease 3'
a) 'replace in all *.rpy files' -> ' ease 30' with ' ease 3'
a) 'replace in all *.rpy files' -> ' ease 35' with ' ease 3'
a) 'replace in all *.rpy files' -> ' ease 40' with ' ease 3'