Skip to content

Instantly share code, notes, and snippets.

@unitycoder
Created December 5, 2014 23:21
Show Gist options
  • Select an option

  • Save unitycoder/7212cc1d6912feb64b83 to your computer and use it in GitHub Desktop.

Select an option

Save unitycoder/7212cc1d6912feb64b83 to your computer and use it in GitHub Desktop.

Revisions

  1. unitycoder created this gist Dec 5, 2014.
    8 changes: 8 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    // http://unitypatterns.com/scripting-with-coroutines/
    IEnumerator Wait(float duration)
    {
    for (float timer = 0; timer < duration; timer += Time.deltaTime)
    {
    yield return 0;
    }
    }