- Home /
How do I get maximum performance on extremely heavy calculations?
My game starts out with a massive worldbuilding step that takes a very long time. Most of the heavy work involves a C# implementation of Box2D. It feels like there must be some overhead running this code in Unity when it doesn't really need to (it doesn't use much of Unity's API). I was wondering if it would be worth implementing some big chunks of my code in a separate DLL? Would it being unmanaged C++ help much at all? I'm sure it would help at least some, but it's a big task and I'd like to know if I could expect orders-of-magnitude improvement.
Are there other tricks I can do?
Ideally I'd like the CPU to be firing on all cylinders. Is there any way I can max out my CPU during this step, or is that more of an OS specific thing?
I will be for some aspects, but most of it is not very parallelizabe.
Answer by Dave-Carlile · Jun 27, 2015 at 01:42 PM
Unity is only using a single core, so if your world building algorithms can benefit from parallelism your best bet is probably threading.
Have you profiled the code and determined where the performance issues are? Identify those first before deciding how to optimize. Sometimes an algorithm change is what's called for instead of a new compiler.
And can you do your calculations in the background while showing an opening video? Or a progress screen that shows game hints? If we're talking about a minute or so, that's a viable option as well. Give the player something interesting to look at while they're waiting.
And is this something that happens every time the game starts? Or just when starting a new game? If the former, wouldn't you just do that the first time and save the results?
Your answer
Follow this Question
Related Questions
C++ plugin for Unity “EntryPointNotFoundExeption” 0 Answers
return char** from C++ DLL 0 Answers
Import (mixed assembly) managed C++/CLI DLL plugin 0 Answers
Problem importing a mixed-mode (C++/CLI) library 2 Answers
Unity plugins 0 Answers