Is there a CallDelayed(wait, action) method? #523
Replies: 1 comment 3 replies
-
UniTask.Delay(millisecondsDelay).ContinueWith(() => { });
// or
UniTask.Delay(TimeSpan.FromSeconds(delayInSeconds)).ContinueWith(() => { }); |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
kenofori
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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);
Beta Was this translation helpful? Give feedback.
All reactions