Kanchou, the latest Rita scene gets really bad lag because you're not clearing the animations before queuing the next ones.
I'm a total noob with renpy so I'm not sure if there's a more elegant fix for it but adding "scene black" before calling the next animation seems to be enough to fix it
So this
Code:
fr "[cap]... Can't you wait until we get to bed~~?"
show fr_h22
with fade
hide fr_21
should probably look like this
Code:
fr "[cap]... Can't you wait until we get to bed~~?"
scene black
show fr_h22
with fade
hide fr_21
After I added that to most of the animation changes for that scene it went from low fps on the animations to buttery smooth. I've got a pretty decent pc and I was getting real bad lag towards the end of the scene, I suspect it'll be really choppy for most people.