Firstborn/Library/PackageCache/com.unity.render-pipelines..../Runtime/Debug/DebugDisplaySettingsPanel.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

23 lines
579 B
C#

using System.Collections.Generic;
namespace UnityEngine.Rendering.Universal
{
public abstract class DebugDisplaySettingsPanel : IDebugDisplaySettingsPanelDisposable
{
private readonly List<DebugUI.Widget> m_Widgets = new List<DebugUI.Widget>();
public abstract string PanelName { get; }
public DebugUI.Widget[] Widgets => m_Widgets.ToArray();
protected void AddWidget(DebugUI.Widget widget)
{
m_Widgets.Add(widget);
}
public void Dispose()
{
m_Widgets.Clear();
}
}
}