You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RecticonRect=newRect(rect.width-iconRightAlign+2,rect.y+(rect.height-iconSize)*0.5f,iconSize,iconSize);// +2 because the given rect is shortened by 2px before this method call
Copy file name to clipboardExpand all lines: Editor/Mono/BuildPipeline.bindings.cs
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,10 @@ public enum BuildOptions
110
110
//StripUnityVersion = 1 << 27
111
111
112
112
// Enable C# code instrumentation for the player.
113
-
EnableDeepProfilingSupport=1<<28
113
+
EnableDeepProfilingSupport=1<<28,
114
+
115
+
// The BuildReport object returned by BuildPipeline.BuildPlayer will contain more details (about build times and contents), at the cost of a slightly (typically, a few percents) longer build time
0 commit comments