coroutines- get a list of 'em that are running?

In C# can I get a list of currently running coroutines? That would be quite useful. I googled a bit but couldn’t find the answer. thanks

1 Like

There is none thats why you didn’t find anything.
Also a coroutine once fired off can’t be accessed from the outside in any other form than StopCoroutine (if it was started with string name) and stopallcoroutines

If yo would need to know whats running you would need to do an own manager handles add / remove of coroutine names to lists as you start them and before they end

1 Like

k thanks