❔ More cores on unity
Is there a simple way to enable more cores to work on a unity process?
3 Replies
Unity's api is not thread safe. U can use multiple threads for heavy calculations and call the api with the results.
or you can take a look at unity dots
For dots there's multiple videos how people implement it in their own projects, though some parts of dots require an advanced understanding of C# and native programming.
Here are some videos i've found through a quick search:
https://www.youtube.com/watch?v=Z9-WkwdDoNY (
Unity DOTS Explained (ECS, Job System, Burst Compiler - 2023 Still Updated))
https://www.youtube.com/watch?v=oFpXMPK_UUE (
Unity Burst Compiler: Performance Optimization Made Easy)
https://www.youtube.com/watch?v=3o12aic7kDY (Unity Job System — A Practical Code Example)
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.