Nexus/Library/PackageCache/com.unity.render-pipelines.core@8903e8d3a298/Runtime/Debugging/IDebugDisplaySettingsData.cs

20 lines
552 B
C#
Raw Permalink Normal View History

2026-01-06 17:23:00 +01:00
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();
/// <summary>
/// Resets the values of the settings data
/// </summary>
void Reset() { }
}
}