Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. namespace hoge
  2. {
  3. using UnityEngine;
  4. using System.Collections;
  5.  
  6. public class TestMonobehaviour : MonoBehaviour
  7. {
  8. private IEnumerator TestCoroutine()
  9. {
  10. Debug.Log("TestCoroutine Start");
  11. yield return new WaitForSeconds(1f);
  12. Debug.Log("TestCoroutine Done");
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement