Skip to content

Instantly share code, notes, and snippets.

@ssabii
Last active October 21, 2019 01:27
Show Gist options
  • Save ssabii/38e98a74f0afe8e5d84999fab13bfc8a to your computer and use it in GitHub Desktop.
Save ssabii/38e98a74f0afe8e5d84999fab13bfc8a to your computer and use it in GitHub Desktop.
public class CoroutineExample : MonoBehaviour
{
IEnumerator coroutine;
void Start ()
{
coroutine = CoroutineTest();
StartCoroutine(coroutine);
}
IEnumerator CoroutineTest()
{
yield return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment