Unity의 UnityEvent 또는 C#의 Action을 사용하여 이벤트를 호출하고, 코루틴에서 해당 이벤트가 발생할 때까지 기다립니다.
using System;
using System.Collections;
using UnityEngine;
using UnityEngine.Events;
public class EventBasedCoroutine : MonoBehaviour
{
public UnityEvent onCustomEvent;
private void Start()
{
StartCoroutine(WaitForEventCoroutine());
}
private IEnumerator WaitForEventCoroutine()
{
Debug.Log("Waiting for event...");
// 이벤트 발생까지 대기
yield return WaitForEvent(() => onCustomEvent);
Debug.Log("Event received! Continuing coroutine...");
}
private IEnumerator WaitForEvent(Func<UnityEvent> eventGetter)
{
bool eventTriggered = false;
UnityAction onEventAction = () => { eventTriggered = true; };
// 이벤트에 리스너 등록
eventGetter().AddListener(onEventAction);
// 이벤트가 발생할 때까지 대기
yield return new WaitUntil(() => eventTriggered);
// 리스너 제거
eventGetter().RemoveListener(onEventAction);
}
// 예제: 이벤트 호출
private void Update()
{
if (Input.GetKeyDown(KeyCode.Space)) // 스페이스바를 누르면 이벤트 발생
{
Debug.Log("Event triggered!");
onCustomEvent?.Invoke();
}
}
}
UnityEvent 대신 C#의 Action 델리게이트를 사용해도 동일한 방식으로 구현할 수 있습니다.
using System;
using System.Collections;
using UnityEngine;
public class ActionBasedCoroutine : MonoBehaviour
{
public Action onCustomAction;
private void Start()
{
StartCoroutine(WaitForActionCoroutine());
}
private IEnumerator WaitForActionCoroutine()
{
Debug.Log("Waiting for action...");
// Action 발생까지 대기
yield return WaitForAction(() => onCustomAction);
Debug.Log("Action received! Continuing coroutine...");
}
private IEnumerator WaitForAction(Func<Action> actionGetter)
{
bool actionTriggered = false;
Action onAction = () => { actionTriggered = true; };
// Action에 리스너 등록
actionGetter() += onAction;
// Action이 발생할 때까지 대기
yield return new WaitUntil(() => actionTriggered);
// 리스너 제거
actionGetter() -= onAction;
}
// 예제: Action 호출
private void Update()
{
if (Input.GetKeyDown(KeyCode.Space)) // 스페이스바를 누르면 Action 호출
{
Debug.Log("Action triggered!");
onCustomAction?.Invoke();
}
}
}
이벤트 외에 특정 상태나 조건에 따라 코루틴을 지연하려면, 조건을 확인하는 yield return 구문을 사용합니다.
private bool isEventTriggered = false;
private void Start()
{
StartCoroutine(WaitForConditionCoroutine());
}
private IEnumerator WaitForConditionCoroutine()
{
Debug.Log("Waiting for custom condition...");
// 특정 조건이 참이 될 때까지 대기
yield return new WaitUntil(() => isEventTriggered);
Debug.Log("Condition met! Continuing coroutine...");
}
// 조건을 변경하여 코루틴 진행
private void Update()
{
if (Input.GetKeyDown(KeyCode.Space))
{
Debug.Log("Condition set!");
isEventTriggered = true;
}
}
이벤트와 조건을 결합하여 특정 이벤트가 발생하거나, 조건이 만족될 때 코루틴을 재개할 수 있습니다.
private bool isConditionMet = false;
public UnityEvent onCustomEvent;
private void Start()
{
StartCoroutine(WaitForEventOrConditionCoroutine());
}
private IEnumerator WaitForEventOrConditionCoroutine()
{
Debug.Log("Waiting for event or condition...");
yield return new WaitUntil(() => isConditionMet || IsEventTriggered());
Debug.Log("Event or condition met! Continuing coroutine...");
}
private bool IsEventTriggered()
{
bool eventTriggered = false;
UnityAction onEventAction = () => { eventTriggered = true; };
onCustomEvent.AddListener(onEventAction);
// 한 번이라도 실행되면 true 반환
if (eventTriggered)
{
onCustomEvent.RemoveListener(onEventAction);
}
return eventTriggered;
}
// 조건을 변경하거나 이벤트를 호출
private void Update()
{
if (Input.GetKeyDown(KeyCode.Space))
{
Debug.Log("Event triggered!");
onCustomEvent?.Invoke();
}
if (Input.GetKeyDown(KeyCode.C))
{
Debug.Log("Condition met!");
isConditionMet = true;
}
}