Multi Task

“All the functionality is demonstrated and explained in the files located in plugin’s Content folder.” Some usage example can be found there.

When using threads from blueprint, the only thing that you’ll have to take in consideration is loop iteration limit.
If you’re using loops and/or sub-loops you’ll need to do some math calculations, and if all your loops iteration are higher than the project’s loop iteration limit, either you increase that limit by going to Project Settings-> Engine->General Settings-> Maximum Loop Iteration Count, or by calculating and diving your iterations to how many threads you’re using and the result will be the amount of iterations per tick.
You’ll have to use the macros in MTaskThread that limits the iterations per tick.
Limiting the iterations per tick with the provided macros will affect the time the thread completes it’s job.
Hope i somehow explained.
Check the included example. If you’re still having troubles you can post it here.