Is there a CallDelayed(wait, action) method? #523
Replies: 1 comment 3 replies
UniTask.Delay(millisecondsDelay).ContinueWith(() => { });
// or
UniTask.Delay(TimeSpan.FromSeconds(delayInSeconds)).ContinueWith(() => { }); |
3 replies
Answer selected by
kenofori
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi there,
I'm coming from MEC library, which has following method, any similar method in UniTask or do i have to go with creating a custom method that await ?
Thanks
Timing.CallDelayed(delayInSeconds, action);
All reactions