WuhuIslandTesting/Library/PackageCache/com.unity.render-pipelines.universal@8148.0.7-4/Runtime/Debug/IDebugDisplaySettingsData.cs
2025-01-07 02:06:59 +01:00

11 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();
}
}