Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

UniversalRenderPipelineVolumeDebugSettings.deprecated.cs 555B

12345678910111213
  1. using System;
  2. namespace UnityEngine.Rendering.Universal
  3. {
  4. public partial class UniversalRenderPipelineVolumeDebugSettings
  5. {
  6. /// <summary>
  7. /// Specifies the render pipeline for this volume settings
  8. /// </summary>
  9. [Obsolete("This property is obsolete and kept only for not breaking user code. VolumeDebugSettings will use current pipeline when it needs to gather volume component types and paths. #from(23.2)", false)]
  10. public override Type targetRenderPipeline => typeof(UniversalRenderPipeline);
  11. }
  12. }