Skip to content

Instantly share code, notes, and snippets.

@peroon
Last active May 12, 2016 11:53
Show Gist options
  • Select an option

  • Save peroon/1c3646d060136df44548bfb0cba9e010 to your computer and use it in GitHub Desktop.

Select an option

Save peroon/1c3646d060136df44548bfb0cba9e010 to your computer and use it in GitHub Desktop.
Self Test Coroutine.cs
void Start(){
StartCoroutine (Test ());
}
IEnumerator Test(){
yield return new WaitForSeconds(1.0f);
Show();
yield return new WaitForSeconds(1.0f);
Hide();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment