Version: Unity 6.5 Alpha (6000.5)
Language : English
Run Project Auditor from the command line
Creating custom analyzers

Compare issues and insights

You can save the Report object produced by Project Auditor’s analysis as a .projectauditor file, or examine it via its API. Report contains a SessionInfo object with information about the analysis session, including a copy of the AnalysisParams which Project Auditor used to configure the analysis. It also provides several methods to access the report’s list of discovered ReportItem instances. Each ReportItem represents a single issue or insight: all the data for a single item in one of the tables that are available in the Project Auditor window.

The difference between issues and insights are that issues have a valid DescriptorId field and insights don’t. There are a couple of ways to check this:

bool isIssue = reportItem.Id.IsValid();

// A slightly more readable alternative...
bool isIssue = reportItem.IsIssue();

If you have a valid DescriptorId, you can use it to get the corresponding Descriptor, which is the object that described a type of issue, including its details and recommendation strings.

var descriptor = reportItem.Id.GetDescriptor();
Debug.Log($"Id: {reportItem.Id.ToString()}");
Debug.Log($"Description: {descriptor.Description}");
Debug.Log($"Recommendation: {descriptor.Recommendation}");

Project Auditor also provides an API for creating custom analyzers tailored to the needs of your project. For more information, refer to Create custom analyzers.

Additional resources

Run Project Auditor from the command line
Creating custom analyzers
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961