Singularity/Library/PackageCache/com.unity.render-pipelines..../Runtime/Debug/IDebugDisplaySettingsData.cs
2024-05-06 11:45:45 -07:00

12 lines
370 B
C#

namespace UnityEngine.Rendering.Universal
{
public interface IDebugDisplaySettingsData : IDebugDisplaySettingsQuery
{
/// <summary>
/// Creates the debug UI panel needed for these debug settings.
/// </summary>
/// <returns>The debug UI panel created.</returns>
IDebugDisplaySettingsPanelDisposable CreatePanel();
}
}