Publisher | Clayton Industries |
---|---|
File size | 17.11kB |
Number of files | 9 |
Latest version | 2 |
Latest release date | 2021-03-15 11:52:36 |
First release date | 2017-02-25 12:40:38 |
Supported Unity versions | 2018.4.2 or higher |
In order to create a good user experience long running tasks should not be executed from the main thread, instead they should be run in the background. Unity coroutines do not entirely solve this problem as they are still run on the main thread. Enter Task Parallel which enables you to create and manage tasks that run in the background on their own threads with just one function call.
Features
- Easily run work on a background thread
- Easily run work on the UI thread
- Wait for one or more threads to finish
- Chain threads together
- An alternative to Unity's co-routines
- Makes thread management simple
- Fully documented
- Support included
Supported Platforms
- Android
- iOS
- Universal Windows Platform
- Xbox One
- Standalone (PC, Mac, Linux)
- And many more
Supported Scripting Backends
- IL2CPP (.NET 2.0, .NET 4.x or .NET Standard 2.0)
- Mono (.NET 2.0, .NET 4.x or .NET Standard 2.0)
All code is fully documented and detailed documentation is available on the website. All source code is included.
We are always looking for more things to add so any suggestions are more than welcome.