- various performance improvements
- by default, lists and arrays are now collapsed, use the "v" button to expand them.
- added error handling for a TypeLoadException which can happen with some generic types.
This commit is contained in:
sinaioutlander
2020-08-12 18:25:33 +10:00
parent e8b17d3583
commit 7144b6a44c
19 changed files with 606 additions and 461 deletions

View File

@ -21,14 +21,14 @@ namespace Explorer
return FindObjectsOfType<T>();
}
public object RunCoroutine(IEnumerator enumerator)
{
return MelonCoroutines.Start(enumerator);
}
//public object RunCoroutine(IEnumerator enumerator)
//{
// return MelonCoroutines.Start(enumerator);
//}
public void EndCoroutine(Coroutine c)
{
StopCoroutine(c);
}
//public void EndCoroutine(Coroutine c)
//{
// StopCoroutine(c);
//}
}
}