Exemple #1
0
 public void StartRefresh()
 {
     if (refreshInProgress == false)
     {
         EditorCoroutines.StartCoroutine(RefreshCoroutine(), this);
     }
 }
Exemple #2
0
 public static EditorCoroutines.EditorCoroutine StartCoroutine(this EditorWindow thisRef, IEnumerator coroutine)
 {
     return(EditorCoroutines.StartCoroutine(coroutine, thisRef));
 }
Exemple #3
0
 public static EditorCoroutines.EditorCoroutine StartCoroutine(this EditorWindow thisRef, string methodName, object value)
 {
     return(EditorCoroutines.StartCoroutine(methodName, value, thisRef));
 }