componenttask-unity
componenttask-unity copied to clipboard
Library to run dotnet's 'Task' and 'Task<T>' scoped to Unity components.
Results
1
componenttask-unity issues
Sort by
recently updated
recently updated
newest added
@BastianBlokland If I use your library as: ``` private void Start() { logger.Trace("Start", id, counter); this.StartTask(Async, options); } private async Task Async() { var localCounter = 0; while (Application.isPlaying) {...