I cannot find the Discord link to report the bug I found, so i will do it here. Maybe the Dev sees it:
After every animation you can see, for a brief moment, a privious render of the dialogue, before the next render appears.
Thats annoying. I checked the code and found the problem and also how to solve it:
E.g.
A scene is active, then at first the animation is started, then comes some dialogue and afterwards the animation is hidden and a new scene (image) is called:
Code:
scene evac1
... (dialogue)
image evadog1 = Movie(channel="ani/Evadog1.mp4", play="ani/Evadog1.mp4", size=(1920,1080))
show evadog1
... (dialogue)
hide evadog1
scene evac4
The problem is that the animation is first hidden and then the next image is called. In between you can see the privious render (the last render before the animation) for a short moment.
This can easily be fixed by switching the animation hiding and calling of a new image: