暫無描述
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.

IDebugDisplaySettingsData.cs 430B

1234567891011121314
  1. namespace UnityEngine.Rendering
  2. {
  3. /// <summary>
  4. /// Debug UI panel interface
  5. /// </summary>
  6. public interface IDebugDisplaySettingsData : IDebugDisplaySettingsQuery
  7. {
  8. /// <summary>
  9. /// Creates the debug UI panel needed for these debug settings.
  10. /// </summary>
  11. /// <returns>The debug UI panel created.</returns>
  12. IDebugDisplaySettingsPanelDisposable CreatePanel();
  13. }
  14. }