xyi/Library/PackageCache/com.unity.render-pipelines.core@bc2ed918b479/Runtime/Debugging/IDebugDisplaySettingsData.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

15 lines
430 B
C#

namespace UnityEngine.Rendering
{
/// <summary>
/// Debug UI panel interface
/// </summary>
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();
}
}