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
When initializing a tween, then do .pause(), and after some time(seconds-minutes) I call on that tween .resume(), it doesn't work... if I do .pause() and pretty immediately I do .resume(), it will work, even if I paused it and resume after some seconds-minutes.
If doing paused: true on the config, and then do resume after some time, it does work well.
Example Test Code
// Create tween...
tween.pause();
//... wait a few seconds
tween.resume();
// It won't show, maybe it was GC?
Additional Information
It works well if doing:
// Create tween...
tween.pause();
tween.resume();
//... wait a few seconds
tween.pause();
//... wait a few seconds
tween.resume();