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