DetailedBuildReport
Generates detailed information in the BuildReport.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Field
- Namespace: UnityEditor
- Assembly: UnityEditor
DetailedBuildReport = 536870912
Remarks
The BuildReport object returned by BuildPipeline.BuildPlayer will contain additional data about build times and contents. This might lead to slightly longer build time, typically by a few percents.
The following script example illustrates how to use when building a Player. Create a project and add the script under Assets/Editor.
DetailedBuildReportusing UnityEditor;using UnityEngine;public class DetailedBuildReportExample : MonoBehaviour{ [MenuItem("Build/DetailedBuildReport example")] public static void MyBuild() { BuildPlayerOptions buildPlayerOptions = new BuildPlayerOptions(); buildPlayerOptions.scenes = new[] { "Assets/scene.unity" }; buildPlayerOptions.locationPathName = "DetailedReportBuild/MyGame.exe"; buildPlayerOptions.target = BuildTarget.StandaloneWindows64; buildPlayerOptions.options = BuildOptions.DetailedBuildReport; var buildReport = BuildPipeline.BuildPlayer(buildPlayerOptions); }}
- Run the scripts example.
Build/DetailedBuildReport - Access the information about the build process in the variable which you can process using the BuildReport API.
buildReport - Refer to the Build Report Inspector source script to find illustrations on how to query the BuildReport API.