Skip to content

Commit 533a84b

Browse files
kirill-titov-uEvergreen
authored andcommitted
[Port] [6000.3] Removed old DebugLevel field from URP asset
1 parent c0a6245 commit 533a84b

3 files changed

Lines changed: 0 additions & 4 deletions

File tree

Packages/com.unity.render-pipelines.universal/Editor/UniversalRenderPipelineAsset/SerializedUniversalRenderPipelineAsset.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ internal class SerializedUniversalRenderPipelineAsset
7777
public SerializedProperty mixedLightingSupportedProp { get; }
7878
public SerializedProperty useRenderingLayers { get; }
7979
public SerializedProperty supportsLightCookies { get; }
80-
public SerializedProperty debugLevelProp { get; }
8180

8281
public SerializedProperty volumeFrameworkUpdateModeProp { get; }
8382
public SerializedProperty volumeProfileProp { get; }
@@ -174,7 +173,6 @@ public SerializedUniversalRenderPipelineAsset(SerializedObject serializedObject)
174173
mixedLightingSupportedProp = serializedObject.FindProperty("m_MixedLightingSupported");
175174
useRenderingLayers = serializedObject.FindProperty("m_SupportsLightLayers");
176175
supportsLightCookies = serializedObject.FindProperty("m_SupportsLightCookies");
177-
debugLevelProp = serializedObject.FindProperty("m_DebugLevel");
178176

179177
volumeFrameworkUpdateModeProp = serializedObject.FindProperty("m_VolumeFrameworkUpdateMode");
180178
volumeProfileProp = serializedObject.FindProperty("m_VolumeProfile");

Packages/com.unity.render-pipelines.universal/Editor/UniversalRenderPipelineAsset/UniversalRenderPipelineAssetUI.Drawers.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ static void DrawRenderingAdditional(SerializedUniversalRenderPipelineAsset seria
180180
{
181181
EditorGUILayout.PropertyField(serialized.srpBatcher, Styles.srpBatcher);
182182
EditorGUILayout.PropertyField(serialized.supportsDynamicBatching, Styles.dynamicBatching);
183-
EditorGUILayout.PropertyField(serialized.debugLevelProp, Styles.debugLevel);
184183
EditorGUILayout.PropertyField(serialized.storeActionsOptimizationProperty, Styles.storeActionsOptimizationText);
185184
}
186185

Packages/com.unity.render-pipelines.universal/Editor/UniversalRenderPipelineAsset/UniversalRenderPipelineAssetUI.Skin.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ internal static class Styles
3131
public static GUIContent srpBatcher = EditorGUIUtility.TrTextContent("SRP Batcher", "If enabled, the render pipeline uses the SRP batcher.");
3232
public static GUIContent storeActionsOptimizationText = EditorGUIUtility.TrTextContent("Store Actions", "Sets the store actions policy on tile based GPUs. Affects render targets memory usage and will impact performance.");
3333
public static GUIContent dynamicBatching = EditorGUIUtility.TrTextContent("Dynamic Batching", "If enabled, the render pipeline will batch drawcalls with few triangles together by copying their vertex buffers into a shared buffer on a per-frame basis.");
34-
public static GUIContent debugLevel = EditorGUIUtility.TrTextContent("Debug Level", "Controls the level of debug information generated by the render pipeline. When Profiling is selected, the pipeline provides detailed profiling tags.");
3534

3635
// Quality
3736
public static GUIContent hdrText = EditorGUIUtility.TrTextContent("HDR", "Controls the global HDR settings.");

0 commit comments

Comments
 (0)