After updating this morning, two issues were added to all of my projects:
(1) Using Monarch, I preload each screen before showing them in order to avoid the black 1-frame flicker when transitioning between screens. This no longer works. Perhaps it has something to do with the collection proxy note in the latest release notes.
(2) I’m getting a 1- or 2-frame lag every 2/3 second or so. This didn’t happen before. Simply executing a go.animate or manually moving an object linearly displays this issue pretty clearly.
Is there a simple way to revert to an older version of the engine after hitting the “Update” button in the editor? I’m running the latest 1.2.169.
It looks like the Monarch issue was indeed caused by the latest Defold engine update, however the periodic lag spike was actually caused by unchecking the “v-sync” box and setting FPS limit to 60. This is something that has confused me for a long time, and I continue to get differing answers on it: in what situations would I use v-sync over FPS clamping and vice versa?
@britzl It has been a while! I completed a super simple example project for showcasing that 1-frame black flicker I get with transitioning between Monarch screens, as described in the first post in this thread.
Left clicking anywhere on the window will load the next screen using monarch.show(), while right clicking will load the next screen using monarch.preload() then monarch.show(). Preloading lessens the black flicker, however still occurs.
Let me know if I messed something up or if I just don’t understand something. This is a problem I’ve been ignoring a while, but it’s about time for me to address it. Thanks!
The standard flow of a Monarch screen transition from A to B is that two flows of execution start at the same time (two coroutines): one to hide A and one to show B.
HIDE A
Notify transition listeners that A is about to be hidden
Release input focus on A
Notify focus listeners that A lost focus
Start ShowOut (ie hide) transition on A
Unload A
Notify transition listeners that A has been hidden
The above happens as fast as possible. The only delay you have is the time it takes to transition the screen. In your case there is no transition so it will all happen in a single frame.
SHOW B
Notify transition listeners that B is about to shown
Load B
Start ShowIn (ie show) transition on B
Acquire input focus on B
Notify focus listeners that B gained focus
Notify transition listeners that B has been shown
The above also happens as fast as possible. BUT there is a problem here and that is that it takes at least one frame to load and enable the proxy for B.
In your case this means that A is unloaded in a single frame but B is not loaded and visible until one frame later. So for at least one frame there is no screen visible at all, and that is why it flickers.
The solution? Either add a transition/delay on A or preload B. If B is preloaded there is no delay in showing B. You can preload a screen by checking the Preload checkbox on the screen script. Keep in mind though that the resources for B will be kept in memory at all times with this solution.