Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created September 20, 2020 05:17
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 todorok1/f957687a169031fa47caeaa0e35f571b to your computer and use it in GitHub Desktop.
Save todorok1/f957687a169031fa47caeaa0e35f571b to your computer and use it in GitHub Desktop.
ループの外で作成したWaitForSecondsのオブジェクトを使います。
// ループの外で作成したWaitForSecondsのオブジェクトを使います。
var wait = new WaitForSeconds(1.0f);
for (int i = 0 ; i < 1000 ; i++)
{
yield return wait;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment