- Unity 2017 Game Optimization(Second Edition)
- Chris Dickinson
- 328字
- 2021-07-02 23:21:05
Understanding the Profiler
The Profiler is an arguably well-designed and intuitive tool, so understanding the majority of its feature set can be gained by simply spending an hour or two exploring its options with a test project and reading its documentation. The more we know about a tool in terms of its benefits, pitfalls, features, and limitations, the more sense we can make of the information it is giving us, so it is worth spending the time to use it in a playground setting. We don't want to be two weeks away from release, with a hundred performance defects to fix, with no idea how to do performance analysis efficiently.
For example, always remain aware of the relative nature of the Timeline View's graphical display. The Timeline View does not provide values on its vertical axis and automatically readjusts this axis based on the content of the last 300 frames; it can make small spikes appear to be a bigger problem than they really are because of the relative change. So, just because a spike or resting state in the timeline seems large and threatening does not necessarily mean there is a performance issue.
Several Areas in the Timeline View provide helpful benchmark bars, which appear as horizontal lines with a timing and FPS value associated with them. These should be used to determine the magnitude of the problem. Don't let the Profiler trick us into thinking that big spikes are always bad. As always, it's only important if the user will notice it.
As an example, if a large CPU usage spike does not exceed the 60 FPS or 30 FPS benchmark bars (depending on the application's target frame rate), then it would be wise to ignore it and search elsewhere for CPU performance issues, as no matter how much we improve the offending piece of code, it will probably never be noticed by the end user, and therefore isn't a critical issue that affects user experience.
- GAE編程指南
- Google Apps Script for Beginners
- 復雜軟件設計之道:領域驅動設計全面解析與實戰
- SQL學習指南(第3版)
- HTML5+CSS3基礎開發教程(第2版)
- 薛定宇教授大講堂(卷Ⅳ):MATLAB最優化計算
- JavaScript+Vue+React全程實例
- INSTANT OpenNMS Starter
- Julia高性能科學計算(第2版)
- Creating Stunning Dashboards with QlikView
- Citrix XenServer企業運維實戰
- Spring Boot+MVC實戰指南
- C++程序設計教程(第2版)
- Mastering Gephi Network Visualization
- Go語言入門經典