Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IDebugDisplaySettingsPanel.cs 755B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. namespace UnityEngine.Rendering
  3. {
  4. /// <summary>
  5. /// Debug UI panel
  6. /// </summary>
  7. public interface IDebugDisplaySettingsPanel
  8. {
  9. /// <summary>
  10. /// The name used when displaying this panel.
  11. /// </summary>
  12. string PanelName { get; }
  13. /// <summary>
  14. /// Widgets used by this panel.
  15. /// </summary>
  16. DebugUI.Widget[] Widgets { get; }
  17. /// <summary>
  18. /// Flags to be applied to the top-level panel.
  19. /// </summary>
  20. DebugUI.Flags Flags { get; }
  21. }
  22. /// <summary>
  23. /// Debug UI panel disposable
  24. /// </summary>
  25. public interface IDebugDisplaySettingsPanelDisposable : IDebugDisplaySettingsPanel, IDisposable
  26. {
  27. }
  28. }