Cheerio 2681 Report post Posted October 17, 2013 Don't Starve comes equipped with a cpu frame profiler to help you track down performance problems with your mod. The profiler makes use of the Chrome Tracing Visualizer to let you see where all your precious cpu time is being spent. To run the profiler you will need:- Google Chrome- Debug Keys Enabled Step 1: Launching the ProfilerTo launch the profiler, press the 'backspace' button in game up the profiling hud. Now press 'ALT+/' to start recording and then again to stop. Your profile will be saved to 'dont_starve/data/profile.json'. Step 2: Launching Chrome Tracing The Chrome Tracing Visiualizer can be launched by starting Chrome and browsing to 'chrome: //tracing/' Step 3: Loading your ProfileClick load and open 'dont_starve/data/profile.json'. Step 4: Visualizing your ProfileYou should now see a breakdown of all the frames you recorded. You can use 'CTRL+LMB' and 'ALT+LMB' to pan and zoom. If you want your profiles to have finer detail, you can add markers by wrapping your code with:TheSim:ProfilerPush('marker_name')--Put slow code here :)TheSim:ProfilerPop()And that's it! Hopefully this will help you track down performance problems with your mod. Share this post Link to post Share on other sites
Terloch 0 Report post Posted October 17, 2013 ^^ Even though it wouldn't help me, thank you for sharing! Share this post Link to post Share on other sites