- Unity 2017 Game Optimization(Second Edition)
- Chris Dickinson
- 227字
- 2021-07-02 23:21:06
Reducing noise
The classical definition of noise (at least in the realm of computer science) is meaningless data, and a batch of profiling data that was blindly captured with no specific target in mind is always full of data that won't interest us. More sources of data takes more time to mentally process and filter, which can be very distracting. One of the best methods to avoid this is to simply reduce the amount of data we need to process by stripping away any data deemed non-vital to the current situation.
Reducing clutter in the Profiler's graphical interface will make it easier to determine which subsystems are causing a spike in resource usage. Remember to use the colored checkboxes in each Timeline View Area to narrow the search.
Be warned that these settings are auto-saved in the Editor, so ensure that you re-enable them for the next profiling session, as this might cause us to miss something important next time.
Also, GameObjects can be deactivated to prevent them from generating profiling data, which will also help reduce clutter in our profiling data. This will naturally cause a slight performance boost for each object we deactivate. However, if we're gradually deactivating objects and performance suddenly becomes significantly more acceptable when a specific object is deactivated, then clearly that object is related to the root cause of the problem.
- Getting Started with Citrix XenApp? 7.6
- HoloLens Beginner's Guide
- C/C++算法從菜鳥到達(dá)人
- Mastering Scientific Computing with R
- Building Mobile Applications Using Kendo UI Mobile and ASP.NET Web API
- Python數(shù)據(jù)分析(第2版)
- Gradle for Android
- H5頁面設(shè)計(jì):Mugeda版(微課版)
- C++面向?qū)ο蟪绦蛟O(shè)計(jì)習(xí)題解答與上機(jī)指導(dǎo)(第三版)
- Extreme C
- ASP.NET求職寶典
- 從零開始:C語言快速入門教程
- Groovy 2 Cookbook
- 3D Printing Designs:Octopus Pencil Holder
- Java 7 Concurrency Cookbook