반응형
코드 작성
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class Example : MonoBehaviour
{
private void Start()
{
StartCoroutine(ExampleCoroutine());
StartCoroutine(Example2Coroutine());
StopAllCoroutine(); //모든 코루틴 정지
}
IEnumerator ExampleCoroutine()
{
Debug.Log("코루틴 실행중");
yield return new WaitForSeconds(1f);
StartCoroutine(ExampleCoroutine());
}
IEnumerator Example2Coroutine()
{
while(true)
{
Debug.Log("코루틴을 While문에서 실행중");
yield return new WaitForSeconds(1f);
}
}
}
참고할만한 글
반응형