Skip to content

Instantly share code, notes, and snippets.

@unitycoder
Created December 5, 2014 23:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save unitycoder/7212cc1d6912feb64b83 to your computer and use it in GitHub Desktop.
Save unitycoder/7212cc1d6912feb64b83 to your computer and use it in GitHub Desktop.
IEnumerator Wait
// http://unitypatterns.com/scripting-with-coroutines/
IEnumerator Wait(float duration)
{
for (float timer = 0; timer < duration; timer += Time.deltaTime)
{
yield return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment