Skip to content

Instantly share code, notes, and snippets.

@cubed2d
Created February 2, 2014 21:59
Show Gist options
  • Select an option

  • Save cubed2d/8775539 to your computer and use it in GitHub Desktop.

Select an option

Save cubed2d/8775539 to your computer and use it in GitHub Desktop.
public WaitForFixedUpdate Wait = new WaitForFixedUpdate();
public IEnumerator PhysicsCoroutine()
{
while (true)
{
yield return Wait;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment