Example #1
0
 public static void StopCoroutine <T>(this T thisRef, string methodName)
 {
     EditorCoroutines.StopCoroutine(methodName, thisRef);
 }
Example #2
0
 public static void StopCoroutine <T>(this T thisRef, IEnumerator coroutine)
 {
     EditorCoroutines.StopCoroutine(coroutine, thisRef);
 }