Table of Contents
Extensions related to Coroutines
public static class CoroutineExtensions
Inheritance System.Object CoroutineExtensions
Catches errors on a coroutine and logs them
public static System.Collections.IEnumerator CatchErrors(object coroutineOrYield);
coroutineOrYield System.Object
System.Collections.IEnumerator
Catches errors on a coroutine and logs them
public static System.Collections.IEnumerator CatchErrors(this IEnumerator enumerator);
enumerator Il2CppSystem.Collections.IEnumerator
System.Collections.IEnumerator
Catches errors on a coroutine and logs them
public static System.Collections.IEnumerator CatchErrors(this System.Collections.IEnumerator enumerator);
enumerator System.Collections.IEnumerator
System.Collections.IEnumerator
Catches errors on a coroutine and logs them
public static System.Collections.IEnumerator CatchErrors(this System.Func<System.Collections.IEnumerator> createCoroutine);
createCoroutine System.Func<System.Collections.IEnumerator>