#did anyone build something like, "if > 10000 entities, do parallel, otherwise single thread"?
1 messages · Page 1 of 1 (latest)
typically the performance gain you look for is main thread time
you may also want to factor in the fact that if you run your code on the main thread, despite the fact that it's faster for that specific operation, you cannot run other operations on the affected components at the same time; you are effectively creating sync points