WuhuIslandTesting/Library/PackageCache/com.unity.render-pipelines.universal@8148.0.7-4/Runtime/Debug/IDebugDisplaySettingsData.cs

12 lines
370 B
C#
Raw Normal View History

2025-01-07 02:06:59 +01:00
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();
}
}