Skip to content

Instantly share code, notes, and snippets.

@lindsaygcox
Last active September 24, 2019 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lindsaygcox/81310b53738961fb9fbb32f379ce19a8 to your computer and use it in GitHub Desktop.
Save lindsaygcox/81310b53738961fb9fbb32f379ce19a8 to your computer and use it in GitHub Desktop.
private WaitForSeconds _delay = new WaitForSeconds(5f);
private IEnumerator WaitCo()
{
while (!animationFinished)
{
yield return delay;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment