Monsoonexe
Monsoonexe
The problem here is that you're using `async void`, which uses `System.Threading.Tasks.Task` (instead of UniTask), and it uses the default SynchronizationContext (which doesn't care about enter/exit playmode at all). I...
Oh, you DO want the code to continue when leaving PlayMode? Don't use UniTask -- it specifically is designed to not do this. Use built-in Task instead.
Try `sq.AppendInterval(...)` after `sq.Join` to make the interval a part of the sequence and not part of the tween.