You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
frameID is assigned setTimeout() handle in requestRender() and then
cancelAnimationFrame(frameID) is called in pause().
Handles from setTimeout() should not be used with cancelAnimationFrame().
In my case, where I created and hided FPSMetter at game start, it killed PIXI's requestAnimationFrame callback sometimes. Chances to get handles with same value from setTimeout() and requestAnimationFrame() are high at application start.
The text was updated successfully, but these errors were encountered:
frameID is assigned setTimeout() handle in requestRender() and then
cancelAnimationFrame(frameID) is called in pause().
Handles from setTimeout() should not be used with cancelAnimationFrame().
In my case, where I created and hided FPSMetter at game start, it killed PIXI's requestAnimationFrame callback sometimes. Chances to get handles with same value from setTimeout() and requestAnimationFrame() are high at application start.
The text was updated successfully, but these errors were encountered: