IDebugDisplaySettingsPanel.cs 495 B

123456789101112131415161718192021
  1. using System;
  2. namespace UnityEngine.Rendering.Universal
  3. {
  4. public interface IDebugDisplaySettingsPanel
  5. {
  6. /// <summary>
  7. /// The name used when displaying this panel.
  8. /// </summary>
  9. string PanelName { get; }
  10. /// <summary>
  11. /// Widgets used by this panel.
  12. /// </summary>
  13. DebugUI.Widget[] Widgets { get; }
  14. }
  15. public interface IDebugDisplaySettingsPanelDisposable : IDebugDisplaySettingsPanel, IDisposable
  16. {
  17. }
  18. }